From 39b762aa785f90907b296f423536c786d36efd98 Mon Sep 17 00:00:00 2001 From: spacek531 Date: Sun, 29 Aug 2021 15:00:47 -0700 Subject: [PATCH] fix sign error --- src/openrct2/ride/Vehicle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/ride/Vehicle.cpp b/src/openrct2/ride/Vehicle.cpp index d635bcae89..fca333a112 100644 --- a/src/openrct2/ride/Vehicle.cpp +++ b/src/openrct2/ride/Vehicle.cpp @@ -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; } }