1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 16:24:35 +01:00

Move .peepWarningThrottle into ParkData struct

This commit is contained in:
Aaron van Geffen
2025-08-13 23:22:07 +02:00
parent a99ffd9736
commit 26f13ca81d
6 changed files with 6 additions and 5 deletions

View File

@@ -1004,7 +1004,7 @@ namespace OpenRCT2
cs.ReadWrite(gameState.park.guestGenerationProbability);
cs.ReadWrite(gameState.park.suggestedGuestMaximum);
cs.ReadWriteArray(gameState.peepWarningThrottle, [&cs](uint8_t& value) {
cs.ReadWriteArray(gameState.park.peepWarningThrottle, [&cs](uint8_t& value) {
cs.ReadWrite(value);
return true;
});