Update ObstacleDetectionSensor.cpp

Change 100.0 to 100.0f as requested by bernatx in Pull Request #2182 from the carla master branch.
This commit is contained in:
SK398497 2019-10-28 11:45:46 +01:00 committed by bernat
parent 302ed9bbb7
commit 2e5cde1181
1 changed files with 1 additions and 1 deletions

View File

@ -139,6 +139,6 @@ void AObstacleDetectionSensor::OnObstacleDetectionEvent(
GetDataStream(*this).Send(*this,
Episode.SerializeActor(Episode.FindOrFakeActor(Actor)),
Episode.SerializeActor(Episode.FindOrFakeActor(OtherActor)),
HitDistance/100.0);
HitDistance/100.0f);
}
}