summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/path-search.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path-search.hpp b/src/path-search.hpp
index 2705b1f6..5e5c97e4 100644
--- a/src/path-search.hpp
+++ b/src/path-search.hpp
@@ -38,7 +38,7 @@ class path_search final
public:
static constexpr int div_factor = 4;
static constexpr auto div_size = iTILE_SIZE2 / div_factor;
- static constexpr auto min_size = div_size / 2;
+ static constexpr auto min_size = div_size * 2;
template<typename T> struct bbox { VectorTypeFor<2, T> min, max; };