fix: Race condition with data inspector

This commit is contained in:
WerWolv
2022-10-05 12:02:40 +02:00
parent 7bb9e7ee82
commit 7f2c60b0d7
4 changed files with 28 additions and 26 deletions

View File

@@ -63,10 +63,10 @@ int main(int argc, char **argv, char **envp) {
window.loop();
} catch (const std::exception &e) {
log::fatal("Exception thrown in main loop: {}", e.what());
return EXIT_FAILURE;
throw;
} catch (...) {
log::fatal("Unknown exception thrown in main loop!");
return EXIT_FAILURE;
throw;
}
}