From dceb834f10527f27464b9cfc173eed5eef6fc5a0 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 31 Mar 2020 18:58:21 +0200 Subject: [PATCH] bt:: in gHoroHex, do not display debug data without DF_GEOM --- binary-tiling.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/binary-tiling.cpp b/binary-tiling.cpp index 8ea815e9..5c403805 100644 --- a/binary-tiling.cpp +++ b/binary-tiling.cpp @@ -794,7 +794,9 @@ EX namespace bt { t[10] = it * t[6] * t[2]; t[11] = it * t[1]; - for(int a=0; a<12; a++) println(hlog, t[a]); + if(debugflags & DF_GEOM) + for(int a=0; a<12; a++) + println(hlog, t[a]); use_direct >>= 1; }