X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInput%2Fjssuper.cxx;h=661364243545eb154928031c9be9e94b910efc31;hb=5151f7f5e0ba7c7e6688bdfbc4cea365196e1ed3;hp=4e1bf8059753d7c1808e156d8cd2fbe39922b999;hpb=9124dd945d9142b667839761f57075d07e4d1585;p=flightgear.git diff --git a/src/Input/jssuper.cxx b/src/Input/jssuper.cxx index 4e1bf8059..661364243 100644 --- a/src/Input/jssuper.cxx +++ b/src/Input/jssuper.cxx @@ -16,13 +16,10 @@ // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#include // plib/js.h should really include this !!!!!! -#include - -#include +#include "jssuper.h" jsSuper::jsSuper(void) { @@ -51,7 +48,7 @@ jsSuper::jsSuper(void) { int jsSuper::nextJoystick(void) { - int i; + // int i; if(!activeJoysticks) return 0; if(currentJoystick == last ) return 0; currentJoystick++; @@ -60,7 +57,7 @@ int jsSuper::nextJoystick(void) { } int jsSuper::prevJoystick(void) { - int i; + // int i; if(!activeJoysticks) return 0; if(currentJoystick == first ) return 0; currentJoystick--;