patterns: Updated pattern language

This commit is contained in:
WerWolv
2022-10-20 09:48:06 +02:00
parent f3b0971d00
commit 37b4d5e7b5
2 changed files with 2 additions and 10 deletions

View File

@@ -60,15 +60,7 @@ int main(int argc, char **argv, char **envp) {
}
}
try {
window.loop();
} catch (const std::exception &e) {
log::fatal("Exception thrown in main loop: {}", e.what());
throw;
} catch (...) {
log::fatal("Unknown exception thrown in main loop!");
throw;
}
window.loop();
}
} while (shouldRestart);