aboutsummaryrefslogtreecommitdiffstats
path: root/entityx/System.cc
diff options
context:
space:
mode:
Diffstat (limited to 'entityx/System.cc')
-rw-r--r--entityx/System.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/entityx/System.cc b/entityx/System.cc
index fb020fd..009ac9c 100644
--- a/entityx/System.cc
+++ b/entityx/System.cc
@@ -17,7 +17,7 @@ BaseSystem::Family BaseSystem::family_counter_;
BaseSystem::~BaseSystem() {
}
-void SystemManager::updateAll(TimeDelta dt) {
+void SystemManager::update_all(TimeDelta dt) {
assert(initialized_ && "SystemManager::configure() not called");
for (auto &pair : systems_) {
pair.second->update(entity_manager_, event_manager_, dt);