Allow defining SDL_MAIN_HANDLED on iOS if you're using another runtime that provides an application delegate

main
Sam Lantinga 2021-07-31 12:44:29 -07:00
parent deed21a83d
commit 3a4b217d6c
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
/* Include the SDL main definition header */ /* Include the SDL main definition header */
#include "SDL_main.h" #include "SDL_main.h"
#ifndef SDL_MAIN_HANDLED
#ifdef main #ifdef main
#undef main #undef main
#endif #endif
@ -15,5 +16,6 @@ main(int argc, char *argv[])
{ {
return SDL_UIKitRunApp(argc, argv, SDL_main); return SDL_UIKitRunApp(argc, argv, SDL_main);
} }
#endif /* !SDL_MAIN_HANDLED */
/* vi: set ts=4 sw=4 expandtab: */ /* vi: set ts=4 sw=4 expandtab: */