diff options
Diffstat (limited to 'src/headless')
-rw-r--r-- | src/headless/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/headless/main.cpp b/src/headless/main.cpp index ecce333..fcb5e8d 100644 --- a/src/headless/main.cpp +++ b/src/headless/main.cpp @@ -49,6 +49,9 @@ static bool run_headless(Dataloader::path_vector_t const& roots, bool run_tests) Logger::info("===== Starting game session... ====="); ret &= game_manager.start_game_session(); + // This triggers a gamestate update + ret &= game_manager.update_clock(); + return ret; } |