Merge pull request #17594 from ivodopiviz/float-overflow
Changed debug max distance to avoid overflow
This commit is contained in:
commit
10448063c4
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue