From e99daaf8b562a2ef87a26cf438c288231c40f930 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Jan 2018 09:45:16 -0500 Subject: [PATCH] android: Fixed compiler warning about nested '/*' comments. --- src/joystick/android/SDL_sysjoystick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/android/SDL_sysjoystick.c b/src/joystick/android/SDL_sysjoystick.c index 767a6e4af23c7..33e5483bdc1f5 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;