diff options
author | Ricardo Buring <ricardo.buring@gmail.com> | 2022-07-25 17:37:28 +0200 |
---|---|---|
committer | Ricardo Buring <ricardo.buring@gmail.com> | 2022-07-25 18:21:53 +0200 |
commit | 178405f7cb00e1a37ba28fcde8bba0d130711c65 (patch) | |
tree | c6cb327e22fb890255b0942842509a3343b79ae9 /core/math/bvh.h | |
parent | 3bd74cd67bfc5484b3f5d4b47da66c55457474c7 (diff) | |
download | redot-engine-178405f7cb00e1a37ba28fcde8bba0d130711c65.tar.gz |
Fixup BVH debugging statements
Diffstat (limited to 'core/math/bvh.h')
-rw-r--r-- | core/math/bvh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/bvh.h b/core/math/bvh.h index 9f6ab9f736..b5f5eda3e6 100644 --- a/core/math/bvh.h +++ b/core/math/bvh.h @@ -302,7 +302,7 @@ public: tree.update(); _check_for_collisions(); #ifdef BVH_INTEGRITY_CHECKS - tree.integrity_check_all(); + tree._integrity_check_all(); #endif } |