aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/LoopManager.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-09 13:42:18 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-11-09 13:42:18 +0100
commitaa4fbb5d2778ea40c3f996c9b07bcdbb155cbcd0 (patch)
tree1448978a44e92e6c2119ddec70fb476ae193e63d /src/crepe/api/LoopManager.cpp
parentb03f3a6300668550afa4d318e520a628a40fc76e (diff)
make format changes
Diffstat (limited to 'src/crepe/api/LoopManager.cpp')
-rw-r--r--src/crepe/api/LoopManager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crepe/api/LoopManager.cpp b/src/crepe/api/LoopManager.cpp
index 99763e4..e737f78 100644
--- a/src/crepe/api/LoopManager.cpp
+++ b/src/crepe/api/LoopManager.cpp
@@ -21,7 +21,7 @@ void LoopManager::fixed_update() {
}
void LoopManager::loop() {
- LoopTimer & timer = LoopTimer::getInstance();
+ LoopTimer & timer = LoopTimer::get_instance();
timer.start();
while (game_running) {
@@ -43,8 +43,8 @@ void LoopManager::loop() {
void LoopManager::setup() {
this->game_running = true;
- LoopTimer::getInstance().start();
- LoopTimer::getInstance().set_fps(60);
+ LoopTimer::get_instance().start();
+ LoopTimer::get_instance().set_fps(60);
}
void LoopManager::render() {
@@ -54,7 +54,7 @@ void LoopManager::render() {
}
void LoopManager::update() {
- LoopTimer & timer = LoopTimer::getInstance();
+ LoopTimer & timer = LoopTimer::get_instance();
}
} // namespace crepe