From 930438dfb7408a6104325cdf4d6796f26acb06a4 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 5 Nov 2023 00:33:08 -0700 Subject: [PATCH] Added note that the #ifdef is for !__IOS__ --- src/main/generic/SDL_sysmain_callbacks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/generic/SDL_sysmain_callbacks.c b/src/main/generic/SDL_sysmain_callbacks.c index d8742efca5..1fcb7d767f 100644 --- a/src/main/generic/SDL_sysmain_callbacks.c +++ b/src/main/generic/SDL_sysmain_callbacks.c @@ -80,4 +80,4 @@ int SDL_EnterAppMainCallbacks(int argc, char* argv[], SDL_AppInit_func appinit, return (rc < 0) ? 1 : 0; } -#endif +#endif // !__IOS__