Fix compilation on Windows

This commit is contained in:
nsubiron 2019-02-27 22:59:45 +01:00
parent 10ea15d859
commit 2c6bc252d2
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ void ACarlaWheeledVehicle::ApplyVehiclePhysicsControl(const FVehiclePhysicsContr
Vehicle4W->SteeringCurve.EditorCurveData = PhysicsControl.SteeringCurve;
// Wheels Setup
for (uint32 i = 0; i < PhysicsControl.Wheels.Num(); ++i)
for (int32 i = 0; i < PhysicsControl.Wheels.Num(); ++i)
{
Vehicle4W->Wheels[i]->DampingRate = PhysicsControl.Wheels[i].DampingRate;
Vehicle4W->Wheels[i]->SteerAngle = PhysicsControl.Wheels[i].SteerAngle;