summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index e876ffda7..6265b9684 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -1407,8 +1407,11 @@ void StateGameLoop()
BasePersistentStorageArray::SwitchMode(PSM_LEAVE_GAMELOOP);
#ifndef DEBUG_DUMP_COMMANDS
- AI::GameLoop();
- Game::GameLoop();
+ {
+ PerformanceMeasurer framerate(PFE_ALLSCRIPTS);
+ AI::GameLoop();
+ Game::GameLoop();
+ }
#endif
UpdateLandscapingLimits();