diff options
-rw-r--r-- | screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ void draw_xy(int x, int y, char c){ void update_current(){ if (silent) return; - printf("\033[%d'%df",y+1,x+1); + printf("\033[%d;%df",y+1,x+1); putchar(screen.l[y].s[x]); fflush(stdout); } |