From 7064dace818fb590bdbdaaa82ac02c5d2ae06607 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 17 Aug 2018 21:38:07 +0200 Subject: [PATCH] default celldistance in syntetic and binarytiling --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index 2883af35..5e5ee1ed 100644 --- a/cell.cpp +++ b/cell.cpp @@ -1520,7 +1520,7 @@ int celldistance(cell *c1, cell *c2) { return 64; } - if(gp::on || stdeuclid || irr::on) { + if(gp::on || stdeuclid || irr::on || syntetic || binarytiling) { if(saved_distances.count(make_pair(c1,c2))) return saved_distances[make_pair(c1,c2)];