diff options
Diffstat (limited to 'src/crepe/api/Engine.cpp')
-rw-r--r-- | src/crepe/api/Engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/Engine.cpp b/src/crepe/api/Engine.cpp index bbb4494..2e9d35a 100644 --- a/src/crepe/api/Engine.cpp +++ b/src/crepe/api/Engine.cpp @@ -39,7 +39,7 @@ void Engine::loop() { LoopTimerManager & timer = this->loop_timer; SystemManager & systems = this->system_manager; - while (game_running) { + while (this->game_running) { timer.update(); while (timer.get_lag() >= timer.get_fixed_delta_time()) { |