1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 12:03:07 +01:00

Fix 3D films only lasting 1 ticks time

This commit is contained in:
duncanspumpkin
2016-01-04 09:11:36 +00:00
parent 3d2a456481
commit 5e6befe20b

View File

@@ -3929,7 +3929,7 @@ static void vehicle_update_showing_film(rct_vehicle *vehicle)
return;
totalTime = RideFilmLength[vehicle->sub_state];
currentTime = vehicle->var_4C + 1;
currentTime = ((sint16)vehicle->var_4C) + 1;
if (currentTime <= totalTime) {
vehicle->var_4C = currentTime;
}