1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

remove debug output when loading some tes

This commit is contained in:
Zeno Rogue 2022-09-14 17:26:22 +02:00
parent c3a1f8cc12
commit 898a2463c0
2 changed files with 4 additions and 4 deletions

View File

@ -452,9 +452,9 @@ EX void unmirror(arbi_tiling& c) {
if(sh[i].apeirogonal) {
cycle(sh[i].edges);
cycle(sh[i].vertices);
println(hlog, "angles before = ", sh[i].angles);
if(debugflags & DF_GEOM) println(hlog, "angles before = ", sh[i].angles);
cycle(sh[i].angles);
println(hlog, "angles now = ", sh[i].angles);
if(debugflags & DF_GEOM) println(hlog, "angles now = ", sh[i].angles);
cycle(sh[i].connections);
}
}

View File

@ -2523,9 +2523,9 @@ EX void parse_treestate(arb::arbi_tiling& c, exp_parser& ep) {
if(qparent > 1) throw hr_parse_exception("multiple parent at " + ep.where());
if(qparent == 1) {
ts.parent_dir = sumparent;
println(hlog, "before: ", ts.rules);
if(debugflags & DF_GEOM) println(hlog, "before: ", ts.rules);
std::rotate(ts.rules.begin(), ts.rules.begin() + sumparent, ts.rules.end());
println(hlog, "after : ", ts.rules);
if(debugflags & DF_GEOM) println(hlog, "after : ", ts.rules);
}
ep.force_eat(")");
}