SDL: Removed redundant ifdef

From b80b466423e5a1139e4a8fa563e82be9f49f5ff7 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 12 Mar 2026 08:29:47 -0700
Subject: [PATCH] Removed redundant ifdef

---
 src/joystick/apple/SDL_mfijoystick.m | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/joystick/apple/SDL_mfijoystick.m b/src/joystick/apple/SDL_mfijoystick.m
index 606aa28cfb6be..f16b105dd6d94 100644
--- a/src/joystick/apple/SDL_mfijoystick.m
+++ b/src/joystick/apple/SDL_mfijoystick.m
@@ -642,16 +642,11 @@ static void IOS_AddJoystickDevice(GCController *controller)
     device->pause_button_index = -1;
 
     if (controller) {
-#ifdef SDL_JOYSTICK_MFI
         if (!IOS_AddMFIJoystickDevice(device, controller)) {
             SDL_free(device->name);
             SDL_free(device);
             return;
         }
-#else
-        SDL_free(device);
-        return;
-#endif // SDL_JOYSTICK_MFI
     }
 
     if (deviceList == NULL) {