diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index de2bb600..35196e4a 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -388,7 +388,8 @@ void game() // Update the screen when application is active, delay otherwise if (SDL_GetAppState() & SDL_APPACTIVE) { - engine->draw(); + frame++; + engine->draw(graphics); graphics->updateScreen(); } else |