1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

remove redundant peep_update_ride_sub_state callproc

This commit is contained in:
IntelOrca
2016-01-16 21:34:23 +00:00
parent d0d883904f
commit e57ac72e5a

View File

@@ -3398,7 +3398,9 @@ static void peep_update_ride(rct_peep* peep){
peep_update_ride_sub_state_21(peep);
break;
default:
RCT2_CALLPROC_X(RCT2_ADDRESS(0x9820DC, int)[peep->sub_state], 0, 0, 0, 0, (int)peep, 0, 0);
// Invalid peep sub-state
assert(false);
break;
}
}