Skip to content

Commit 130d205

Browse files
committed
Fix wrong check for onFrame in run method
This issue would cause early termination
1 parent 2ecab36 commit 130d205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/umbra/engine.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ int UmbraEngine::run() {
584584

585585
SDL_AddEventWatch(onSDLEvent, this);
586586
while (!TCODConsole::isWindowClosed()) {
587-
if (!onFrame()) break;
587+
if (onFrame() != SDL_APP_CONTINUE) break;
588588
}
589589
SDL_RemoveEventWatch(onSDLEvent, this);
590590
UmbraLog::closeBlock(UMBRA_LOGRESULT_SUCCESS);

0 commit comments

Comments
 (0)