diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-04 17:27:30 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-04 17:27:30 +0100 |
commit | e303bd4c54b0edbcd1819a47a5d8aaef88211a09 (patch) | |
tree | 16a3e59d0ecf3442f20fb3e0505e80719b0f5a7a /src/crepe | |
parent | 94d95cb13e76d6cd3ec892a7f0b2bab938a9ba6a (diff) |
Increased gameloop time
Diffstat (limited to 'src/crepe')
-rw-r--r-- | src/crepe/api/LoopManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/LoopManager.cpp b/src/crepe/api/LoopManager.cpp index cd602d8..46831e8 100644 --- a/src/crepe/api/LoopManager.cpp +++ b/src/crepe/api/LoopManager.cpp @@ -54,8 +54,8 @@ void LoopManager::loop() { timer.enforce_frame_rate(); - // Stop the game after 5 seconds, for testing purposes - if (timer.get_current_time() > 5) { + // Stop the game after 10 seconds, for testing purposes + if (timer.get_current_time() > 10) { this->game_running = false; } } |