Update float that should be bool

This commit is contained in:
Ryan Huffman 2014-11-25 12:08:48 -08:00
parent 9020fee31a
commit f8c8ed868e

View file

@ -305,7 +305,7 @@ void OverlayPropertyResultFromScriptValue(const QScriptValue& value, OverlayProp
RayToOverlayIntersectionResult Overlays::findRayIntersection(const PickRay& ray) {
float bestDistance = std::numeric_limits<float>::max();
float bestIsFront = false;
bool bestIsFront = false;
RayToOverlayIntersectionResult result;
QMapIterator<unsigned int, Overlay*> i(_overlays3D);
i.toBack();