mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Fix incorrect memset
This commit is contained in:
@@ -5427,7 +5427,7 @@ foundRideEntry:
|
||||
}
|
||||
}
|
||||
|
||||
memset(ride->num_customers, 0, 10 * sizeof(ride->num_customers));
|
||||
memset(ride->num_customers, 0, sizeof(ride->num_customers));
|
||||
ride->value = 0xFFFF;
|
||||
ride->satisfaction = 255;
|
||||
ride->satisfaction_time_out = 0;
|
||||
|
||||
Reference in New Issue
Block a user