summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index da8f7e0..dc32b2a 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -508,13 +508,13 @@ void Game_Tick(double delta) {
}
/*
- * ECS_Tick() gets called first because it updates the public
+ * ECS_Tick_Early() gets called first because it updates the public
* `EntitiesToBeRemoved` for all other ticks to use.
*/
ECS_Tick_Early(delta);
- ECS_Tick(delta);
EntityType_Tick(delta);
+ ECS_Tick(delta);
PkeInput_Tick(delta);
const auto pluginCount = LoadedPkePlugins.Count();