mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 03:23:15 +01:00
fix sign error
This commit is contained in:
@@ -7467,7 +7467,7 @@ void Vehicle::UpdateAdditionalAnimation()
|
||||
UpdateAnimationAnimalFlying();
|
||||
// makes animation play faster with vehicle speed
|
||||
targetFrame = abs(_vehicleVelocityF64E08) >> 24;
|
||||
animationState = std::max(animationState - targetFrame, 0);
|
||||
animationState = std::max(animationState - targetFrame, 0u);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user