aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager/SystemManager.hpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-20 12:24:59 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-20 12:24:59 +0100
commitb291d662f79af8de95ab40de29a09f87470d0095 (patch)
tree0fc3318f985f888ca8dd70ac2005cb925dc6f58b /src/crepe/manager/SystemManager.hpp
parent2b64252d44aea2709f836eaed199bcc04e961179 (diff)
pull 3bda25f from demo
Diffstat (limited to 'src/crepe/manager/SystemManager.hpp')
-rw-r--r--src/crepe/manager/SystemManager.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crepe/manager/SystemManager.hpp b/src/crepe/manager/SystemManager.hpp
index 3d26e4c..8d06eb1 100644
--- a/src/crepe/manager/SystemManager.hpp
+++ b/src/crepe/manager/SystemManager.hpp
@@ -36,6 +36,7 @@ void SystemManager::load_system() {
throw runtime_error(format("SystemManager: {} is already initialized", type.name()));
System * system = new T(this->mediator);
this->systems[type] = unique_ptr<System>(system);
+ this->system_order.push_back(*this->systems[type]);
}
} // namespace crepe