clustered tevd integration wip

This commit is contained in:
minjaesong
2023-06-15 18:55:38 +09:00
parent 17a9fa8ab7
commit 445c1a873f
3 changed files with 17 additions and 3 deletions

View File

@@ -79,8 +79,9 @@ let repaint = function() {
if (cy <= termH) {
if (cx >= 0 && cx < termW) {
con.move(cy, cx);
if (char != 10 && char != 13)
if (char != 10 && char != 13) {
con.addch(char);con.curs_right();
}
}
cx += 1;
}