1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 15:00:26 +00:00

bt:: in gHoroHex, do not display debug data without DF_GEOM

This commit is contained in:
Zeno Rogue 2020-03-31 18:58:21 +02:00
parent 4e7aadf540
commit dceb834f10

View File

@ -794,7 +794,9 @@ EX namespace bt {
t[10] = it * t[6] * t[2]; t[10] = it * t[6] * t[2];
t[11] = it * t[1]; 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; use_direct >>= 1;
} }