1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 23:04:36 +01:00

Fix vertical launch

This commit is contained in:
duncanspumpkin
2015-12-17 23:45:58 +00:00
parent 7f0f983f25
commit 0364d0deb7

View File

@@ -5502,7 +5502,7 @@ void sub_6DBF3E(rct_vehicle *vehicle)
input.x = vehicle->track_x;
input.y = vehicle->track_y;
input.element = mapElement;
if (track_block_get_next(&input, &output, &outputZ, &outputDirection)) {
if (!track_block_get_next(&input, &output, &outputZ, &outputDirection)) {
RCT2_GLOBAL(0x00F64E18, uint32) |= VEHICLE_UPDATE_MOTION_TRACK_FLAG_12;
}
}