SDL: testlocale: don't pass SDL_INIT_VIDEO to SDL_Init

From e620925728b48b39f5d40e9b1d6e2e36fd2bc97f Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Tue, 18 Jul 2023 22:21:19 +0200
Subject: [PATCH] testlocale: don't pass SDL_INIT_VIDEO to SDL_Init

---
 test/testlocale.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/testlocale.c b/test/testlocale.c
index 1990984ad44d..65a82df3d24a 100644
--- a/test/testlocale.c
+++ b/test/testlocale.c
@@ -39,7 +39,7 @@ int main(int argc, char **argv)
     SDLTest_CommonState *state;
 
     /* Initialize test framework */
-    state = SDLTest_CommonCreateState(argv, SDL_INIT_VIDEO);
+    state = SDLTest_CommonCreateState(argv, 0);
     if (state == NULL) {
         return 1;
     }