mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-28 09:14:58 +01:00
Change gDateMonthsElapsed type to int32_t
This commit is contained in:
@@ -742,7 +742,7 @@ static void window_finances_summary_scrollpaint(rct_window* w, rct_drawpixelinfo
|
||||
}
|
||||
|
||||
// Expenditure / Income values for each month
|
||||
int16_t currentMonthYear = gDateMonthsElapsed;
|
||||
int16_t currentMonthYear = static_cast<int16_t>(gDateMonthsElapsed);
|
||||
for (int32_t i = summary_max_available_month(); i >= 0; i--)
|
||||
{
|
||||
screenCoords.y = 0;
|
||||
|
||||
Reference in New Issue
Block a user