mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 23:34:37 +01:00
Fix #17834: finance window becomes blank after 4096 years
This commit is contained in:
@@ -36,6 +36,7 @@
|
||||
- Fix: [#17703] (undefined string) when building on invalid height.
|
||||
- Fix: [#17776] “Other Parks” tab uses separate lists for SC4/SC6 and .park scenarios.
|
||||
- Fix: [#17784] Colour preset RNG is biased (original bug).
|
||||
- Fix: [#17834] Finance window becomes blank after 4096 years.
|
||||
|
||||
0.4.1 (2022-07-04)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
@@ -379,14 +379,12 @@ public:
|
||||
}
|
||||
|
||||
// Expenditure / Income values for each month
|
||||
int16_t currentMonthYear = static_cast<int16_t>(gDateMonthsElapsed);
|
||||
uint16_t currentMonthYear = static_cast<uint16_t>(gDateMonthsElapsed);
|
||||
for (int32_t i = SummaryMaxAvailableMonth(); i >= 0; i--)
|
||||
{
|
||||
screenCoords.y = 0;
|
||||
|
||||
int16_t monthyear = currentMonthYear - i;
|
||||
if (monthyear < 0)
|
||||
continue;
|
||||
uint16_t monthyear = currentMonthYear - i;
|
||||
|
||||
// Month heading
|
||||
auto ft = Formatter();
|
||||
|
||||
Reference in New Issue
Block a user