IOS: Call exit(0) when exiting to prevent hanging

Prevents the process from hanging on exit when using the
Quit button in launcher or a game's quit function
This commit is contained in:
sluicebox 2019-09-09 15:15:52 -07:00 committed by Filippos Karapetis
parent 299c28e93e
commit e8f009e04f

View File

@ -414,4 +414,7 @@ void iOS7_main(int argc, char **argv) {
//*stderr = NULL;
fclose(newfp);
}
// prevents hanging on exit
exit(0);
}