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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user