Commit cb8685c022f587916f4a1b34e6be24877d560748

Sam Lantinga 2016-12-27T02:04:38

Fixed comment style

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c
index 3fd1f11..140134a 100644
--- a/src/joystick/SDL_gamecontroller.c
+++ b/src/joystick/SDL_gamecontroller.c
@@ -1279,7 +1279,7 @@ SDL_GameControllerGetAxis(SDL_GameController * gamecontroller, SDL_GameControlle
             } else {
                 valid_output_range = (value >= binding->output.axis.axis_max && value <= binding->output.axis.axis_min);
             }
-            // If the value is zero, there might be another binding that makes it non-zero
+            /* If the value is zero, there might be another binding that makes it non-zero */
             if (value != 0 && valid_output_range) {
                 return (Sint16)value;
             }