1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix mistaken assignment

This commit is contained in:
duncanspumpkin
2018-04-11 18:58:48 +01:00
parent e4e514c743
commit c2c5afa62c

View File

@@ -3611,7 +3611,7 @@ static void peep_update_ride_leave_vehicle(rct_peep * peep)
invalidate_sprite_2((rct_sprite *)peep);
x += vehicle_type->peep_loading_waypoints[peep->var_37 / 4][1].x;
y += vehicle_type->peep_loading_waypoints[peep->var_37 / 4][1].x;
y += vehicle_type->peep_loading_waypoints[peep->var_37 / 4][1].y;
peep->destination_x = x;
peep->destination_y = y;