Catch NSException in macOS run loop to prevent crashs

This commit is contained in:
Bernhard Liebl 2018-01-15 09:20:45 +01:00
parent 859ac6233d
commit 3ff18ee61e
1 changed files with 14 additions and 5 deletions

View File

@ -2148,12 +2148,21 @@ void OS_OSX::run() {
//int frames=0;
//uint64_t frame=0;
while (!force_quit) {
bool quit = false;
while (!force_quit && !quit) {
@try {
process_events(); // get rid of pending events
joypad_osx->process_joypads();
if (Main::iteration() == true)
break;
if (Main::iteration() == true) {
quit = true;
}
} @catch (NSException *exception) {
ERR_PRINTS("NSException: " + String([exception reason].UTF8String));
}
};
main_loop->finish();