behaviour of con.addch changed - no longer advances cursor

This commit is contained in:
minjaesong
2021-01-29 14:19:37 +09:00
parent c73a725466
commit d963cf8294
10 changed files with 36 additions and 19 deletions

View File

@@ -2,6 +2,6 @@ con.clear();
con.move(1,1);
for (let i = 0; i < 1024; i++) {
if (i < 512) con.color_pair(239, 0); else con.color_pair(0, 239);
con.addch(i%256);
con.addch(i%256);con.curs_right();
}
println();