From d0e1210dd7be3db928cbebae2b8511af460ef199 Mon Sep 17 00:00:00 2001
From: slothlife <slothlife@users.noreply.github.com>
Date: Sun, 13 Jul 2014 01:39:42 -0500
Subject: [PATCH] Fix for Bullet debug assert

After changing the vector comparison to squaredDistance, the threshold
for rejecting similar vectors needed to be readjusted.
---
 apps/openmw/mwworld/physicssystem.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/openmw/mwworld/physicssystem.cpp b/apps/openmw/mwworld/physicssystem.cpp
index 201393761..daad5b0e6 100644
--- a/apps/openmw/mwworld/physicssystem.cpp
+++ b/apps/openmw/mwworld/physicssystem.cpp
@@ -364,7 +364,7 @@ namespace MWWorld
                     continue; // velocity updated, calculate nextpos again
                 }
 
-                if(newPosition.squaredDistance(nextpos) > 0.00000001*0.00000001)
+                if(newPosition.squaredDistance(nextpos) > 0.0001)
                 {
                     // trace to where character would go if there were no obstructions
                     tracer.doTrace(colobj, newPosition, nextpos, engine);