From 55f245cb5cbd1cba54e0dc5f0cbceaf3f526c8b1 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Tue, 10 Dec 2024 14:13:42 +0100 Subject: process feedback on #60 --- src/crepe/api/LoopManager.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/crepe/api/LoopManager.cpp') diff --git a/src/crepe/api/LoopManager.cpp b/src/crepe/api/LoopManager.cpp index 88243c4..3e9e21c 100644 --- a/src/crepe/api/LoopManager.cpp +++ b/src/crepe/api/LoopManager.cpp @@ -1,4 +1,5 @@ #include "../system/AnimatorSystem.h" +#include "../system/AudioSystem.h" #include "../system/CollisionSystem.h" #include "../system/InputSystem.h" #include "../system/ParticleSystem.h" @@ -20,6 +21,7 @@ LoopManager::LoopManager() { this->load_system(); this->load_system(); this->load_system(); + this->load_system(); } void LoopManager::process_input() { this->get_system().update(); } @@ -37,6 +39,7 @@ void LoopManager::fixed_update() { this->get_system().update(); this->get_system().update(); this->get_system().update(); + this->get_system().update(); } void LoopManager::loop() { -- cgit v1.2.3