From af9bafae87fbb5939f8013ef17505a5794b04b71 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Wed, 7 Jan 2015 12:48:16 -0800 Subject: [PATCH] fix typo --- libraries/entities/src/EntityItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/entities/src/EntityItem.cpp b/libraries/entities/src/EntityItem.cpp index 87d827c1f2..3a2b8c64b1 100644 --- a/libraries/entities/src/EntityItem.cpp +++ b/libraries/entities/src/EntityItem.cpp @@ -659,7 +659,7 @@ void EntityItem::simulate(const quint64& now) { float angularSpeed = glm::length(_angularVelocity); - const float EPSILON_ANGULAR_VELOCITY_LENGTH = 0.1; // + const float EPSILON_ANGULAR_VELOCITY_LENGTH = 0.1f; // if (angularSpeed < EPSILON_ANGULAR_VELOCITY_LENGTH) { setAngularVelocity(NO_ANGULAR_VELOCITY); } else {