SDL: Match style

From b3336c5a73837ccabce831ceae36f197a37e89f4 Mon Sep 17 00:00:00 2001
From: Alexander Batalov <[EMAIL REDACTED]>
Date: Thu, 27 Feb 2025 09:53:44 +0300
Subject: [PATCH] Match style

---
 src/filesystem/SDL_filesystem.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/filesystem/SDL_filesystem.c b/src/filesystem/SDL_filesystem.c
index 2dc39283c61b0..b115019ba5491 100644
--- a/src/filesystem/SDL_filesystem.c
+++ b/src/filesystem/SDL_filesystem.c
@@ -189,11 +189,11 @@ static bool WildcardMatch(const char *pattern, const char *str, bool *matched_to
             pch = *pattern;
         }
 
-#if defined(SDL_PLATFORM_WINDOWS)
+        #ifdef SDL_PLATFORM_WINDOWS
         if (sch == '\\') {
             sch = '/';
         }
-#endif
+        #endif
     }
 
     // '*' at the end can be ignored, they are allowed to match nothing.