1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 05:53:02 +01:00

Fix #14734: Use scenario ticks instead of resetting to zero

This commit is contained in:
Matt
2021-05-24 22:27:49 +03:00
parent de6c4b7b76
commit 6e609961e2
2 changed files with 1 additions and 1 deletions

View File

@@ -56,6 +56,7 @@ void GameState::InitAll(int32_t mapSize)
{
gInMapInitCode = true;
gCurrentTicks = 0;
map_init(mapSize);
_park->Initialise();
finance_init();

View File

@@ -61,7 +61,6 @@ void date_reset()
{
gDateMonthsElapsed = 0;
gDateMonthTicks = 0;
gCurrentTicks = 0;
gCurrentRealTimeTicks = 0;
}