Browse Source

Merge pull request #17594 from ivodopiviz/float-overflow

Changed debug max distance to avoid overflow
Juan Linietsky 7 years ago
parent
commit
10448063c4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      servers/physics/collision_object_sw.h

+ 2 - 1
servers/physics/collision_object_sw.h

@@ -37,7 +37,8 @@
 #include "shape_sw.h"
 
 #ifdef DEBUG_ENABLED
-#define MAX_OBJECT_DISTANCE 10000000.0
+#define MAX_OBJECT_DISTANCE 3.1622776601683791e+18
+
 #define MAX_OBJECT_DISTANCE_X2 (MAX_OBJECT_DISTANCE * MAX_OBJECT_DISTANCE)
 #endif