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
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
1 changed files with 1 additions and 1 deletions

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);