TITANIC: Change add float suffixes to float assignments

This commit is contained in:
Filippos Karapetis 2019-05-27 14:51:20 +03:00
parent f6af273fca
commit a5614eeaac

View File

@ -29,8 +29,8 @@ FRange::FRange() {
}
void FRange::reset() {
_min._x = _min._y = _min._z = 9.9999994e27;
_max._x = _max._y = _max._z = -9.9999994e27;
_min._x = _min._y = _min._z = 9.9999994e27F;
_max._x = _max._y = _max._z = -9.9999994e27F;
}
void FRange::expand(const FVector &v) {