uikit: Don't implement main() twice for iOS static libs.

I think this was a leftover from before the two Xcode projects were merged.
Ryan C. Gordon 2020-11-10 13:12:10 -05:00
parent 940419b0a6
commit 7b5a0a9f97
1 changed files with 0 additions and 8 deletions

View File

@ -43,14 +43,6 @@ static int forward_argc;
static char **forward_argv;
static int exit_status;
#if defined(SDL_MAIN_NEEDED) && !defined(IOS_DYLIB)
/* SDL is being built as a static library, include main() */
int main(int argc, char *argv[])
{
return SDL_UIKitRunApp(argc, argv, SDL_main);
}
#endif /* SDL_MAIN_NEEDED && !IOS_DYLIB */
int SDL_UIKitRunApp(int argc, char *argv[], SDL_main_func mainFunction)
{
int i;