1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Fix money formatting on cheat window

This commit is contained in:
Ted John
2021-04-27 19:38:35 +01:00
committed by Gymnasiast
parent 77a46a3d34
commit 74de598cc0

View File

@@ -559,7 +559,7 @@ public:
case WINDOW_CHEATS_PAGE_GUESTS:
{
auto ft = Formatter::Common();
ft.Add<int32_t>(MONEY(1000, 00));
ft.Add<money64>(MONEY(1000, 00));
SetCheckboxValue(WIDX_GUEST_IGNORE_RIDE_INTENSITY, gCheatsIgnoreRideIntensity);
SetCheckboxValue(WIDX_DISABLE_VANDALISM, gCheatsDisableVandalism);
SetCheckboxValue(WIDX_DISABLE_LITTERING, gCheatsDisableLittering);