1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Fix #2771. Observation towers now spin correctly.

Issue was caused by mistyping the variable name
This commit is contained in:
duncanspumpkin
2016-01-24 08:15:10 +00:00
parent b39a48a792
commit 7cf156a86a

View File

@@ -6142,8 +6142,8 @@ static void sub_6D63D4(rct_vehicle *vehicle)
vehicle->var_C8 += 0x3333;
} else {
vehicle->var_C8 += 0x3333;
vehicle->var_C8 += 1;
vehicle->var_C8 &= 7;
vehicle->var_C5 += 1;
vehicle->var_C5 &= 7;
vehicle_invalidate(vehicle);
}
break;