1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-01 18:09:04 +00:00

dhrg:: fixup print to println

This commit is contained in:
Zeno Rogue
2025-12-05 11:42:52 +01:00
parent 45382fc26d
commit c184bb0f4c

View File

@@ -161,7 +161,7 @@ void verifycs() {
edgecs += edgetally[u] * u*u,
totalcs += tally[u] * u*u;
print(hlog, "edgecs=", hr::format("%lld", edgecs), " totalcs=", hr::format("%lld", totalcs));
println(hlog, "edgecs=", hr::format("%lld", edgecs), " totalcs=", hr::format("%lld", totalcs));
}
void preparegraph() {