Commit f47a08ab84ebab3778b5f72a2b968dc3d633c341

Sam Lantinga 2023-03-01T16:47:48

Fixed typo in previous cherry-pick

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c
index 281c3aa..8d3f66a 100644
--- a/src/joystick/SDL_gamecontroller.c
+++ b/src/joystick/SDL_gamecontroller.c
@@ -830,8 +830,8 @@ static ControllerMapping_t *SDL_PrivateGetControllerMappingForGUID(SDL_JoystickG
 #ifdef __ANDROID__
     } else {
         mapping = SDL_CreateMappingForAndroidController(guid);
-    }
 #endif
+    }
     return mapping;
 }