2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-16 18:31:20 +00:00

Fix game quit

This commit is contained in:
Luke Street 2025-04-03 23:16:53 -06:00
parent b45f808e2c
commit 7439c26b67

View File

@ -599,7 +599,9 @@ int main(int argc, char** argv) {
if (!aurora_begin_frame()) { if (!aurora_begin_frame()) {
continue; continue;
} }
g_app->onAppIdle(1.f / 60.f /* TODO */); if (!g_app->onAppIdle(1.f / 60.f /* TODO */)) {
break;
}
g_app->onAppDraw(); g_app->onAppDraw();
aurora_end_frame(); aurora_end_frame();
g_app->onAppPostDraw(); g_app->onAppPostDraw();