diff options
author | proller <proller@github.com> | 2013-07-01 00:26:54 +0400 |
---|---|---|
committer | proller <proller@github.com> | 2013-07-01 00:26:54 +0400 |
commit | 131eb56f5202f1e4826c1cacbfcee7f34b7dfe33 (patch) | |
tree | ff77c0b1f3369d8f437e00bce1cbc09e76516708 /src | |
parent | 37ca8854f7d1b16f3b561edd8bf19eaf6dd264d2 (diff) | |
download | minetest-131eb56f5202f1e4826c1cacbfcee7f34b7dfe33.tar.gz minetest-131eb56f5202f1e4826c1cacbfcee7f34b7dfe33.tar.bz2 minetest-131eb56f5202f1e4826c1cacbfcee7f34b7dfe33.zip |
Disable collision fix, its broke unit tests
Diffstat (limited to 'src')
-rw-r--r-- | src/collision.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/collision.cpp b/src/collision.cpp index df3878f4c..0c67abe8c 100644 --- a/src/collision.cpp +++ b/src/collision.cpp @@ -32,7 +32,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "profiler.h" // float error is 10 - 9.96875 = 0.03125 -#define COLL_ZERO 0.032 +//#define COLL_ZERO 0.032 // broken unit tests +#define COLL_ZERO 0 // Helper function: // Checks for collision of a moving aabbox with a static aabbox |