Commit e99daaf8b562a2ef87a26cf438c288231c40f930

Ryan C. Gordon 2018-01-22T09:45:16

android: Fixed compiler warning about nested '/*' comments.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/joystick/android/SDL_sysjoystick.c b/src/joystick/android/SDL_sysjoystick.c
index 767a6e4..33e5483 100644
--- a/src/joystick/android/SDL_sysjoystick.c
+++ b/src/joystick/android/SDL_sysjoystick.c
@@ -145,7 +145,7 @@ keycode_to_SDL(int keycode)
             break;
         case AKEYCODE_DPAD_CENTER:
             /* This is handled better by applications as the A button */
-            /*button = SDL_CONTROLLER_BUTTON_MAX+4; /* Not supported by GameController */
+            /*button = SDL_CONTROLLER_BUTTON_MAX+4;*/ /* Not supported by GameController */
             button = SDL_CONTROLLER_BUTTON_A;
             break;