1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

Change gDateMonthsElapsed type to int32_t

This commit is contained in:
Tulio Leao
2020-08-25 19:06:38 -03:00
parent 10aca0fe6e
commit efdb7e1a2d
13 changed files with 18 additions and 18 deletions

View File

@@ -276,7 +276,7 @@ void GameState::UpdateLogic()
#endif
date_update();
_date = Date(gDateMonthsElapsed, gDateMonthTicks);
_date = Date(static_cast<uint32_t>(gDateMonthsElapsed), gDateMonthTicks);
scenario_update();
climate_update();