1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 17:54:50 +01:00

Change FIXED_XDP from macros to constexprs

This commit is contained in:
Michael Steenbeek
2025-01-25 13:42:22 +01:00
committed by GitHub
parent 67024cec2d
commit a3d5b4e0c3
95 changed files with 272 additions and 250 deletions

View File

@@ -63,7 +63,7 @@ namespace OpenRCT2::Ui
ft.Add<int16_t>(objective.NumGuests);
ft.Add<int16_t>(DateGetTotalMonths(MONTH_OCTOBER, objective.Year));
if (objective.Type == OBJECTIVE_FINISH_5_ROLLERCOASTERS)
ft.Add<uint16_t>(objective.MinimumExcitement);
ft.Add<ride_rating>(objective.MinimumExcitement);
else
ft.Add<money64>(objective.Currency);
}