1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 01:47:39 +00:00

replaced some debug printfs with print hlog

This commit is contained in:
Zeno Rogue
2019-05-22 00:03:26 +02:00
parent f7d580fa9c
commit 7d8f48d48b
3 changed files with 4 additions and 4 deletions

View File

@@ -338,8 +338,8 @@ bool handleTune(int sym, int uni) {
else if(uni == 'z')
bscale7 = bscale6 = 1, brot7 = brot6 = 0;
else return false;
printf("s7 %lf r7 %lf s6 %lf r6 %lf\n", bscale7, brot7, bscale6, brot6);
resetGeometry();
println(hlog, spaced(bscale7, brot7, bscale6, brot6));
return true;
}
#endif