1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 18:25:16 +01:00

Fix #19524: Incorrect staff count beyond 32767 (#19530)

This commit is contained in:
Michael Steenbeek
2023-03-01 21:58:15 +01:00
committed by GitHub
parent c3bd837c42
commit 4a78fd772c
3 changed files with 4 additions and 3 deletions

View File

@@ -190,8 +190,8 @@ static constexpr const WindowParkAward _parkAwards[] = {
class ParkWindow final : public Window
{
int16_t _numberOfStaff = -1;
int16_t _numberOfRides = -1;
int32_t _numberOfStaff = -1;
int32_t _numberOfRides = -1;
uint8_t _peepAnimationFrame = 0;
public: