aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-04 17:27:30 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-04 17:27:30 +0100
commite303bd4c54b0edbcd1819a47a5d8aaef88211a09 (patch)
tree16a3e59d0ecf3442f20fb3e0505e80719b0f5a7a /src/crepe
parent94d95cb13e76d6cd3ec892a7f0b2bab938a9ba6a (diff)
Increased gameloop time
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/api/LoopManager.cpp4
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;
}
}