SDL: Fixed typo in previous cherry-pick

From f47a08ab84ebab3778b5f72a2b968dc3d633c341 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 1 Mar 2023 16:47:48 -0800
Subject: [PATCH] Fixed typo in previous cherry-pick

---
 src/joystick/SDL_gamecontroller.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c
index 281c3aa769f3..8d3f66afda7c 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;
 }