Possible fix for expression that's always false
authorTobias Markus <tobbi@mozilla-uk.org>
Sun, 1 Mar 2015 21:36:25 +0000 (22:36 +0100)
committerTobias Markus <tobbi@mozilla-uk.org>
Sun, 1 Mar 2015 21:36:25 +0000 (22:36 +0100)
src/supertux/menu/joystick_menu.cpp

index bd11c9a..adde0c5 100644 (file)
@@ -163,9 +163,9 @@ JoystickMenu::refresh_menu_item(Controller::Control id)
       name << "X";
     else if (abs(axis) == 2)
       name << "Y";
-    else if (abs(axis) == 2)
-      name << "X2";
     else if (abs(axis) == 3)
+      name << "X2";
+    else if (abs(axis) == 4)
       name << "Y2";
     else
       name << abs(axis);