summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen.c b/screen.c
index 8e1b8bc..e81f037 100644
--- a/screen.c
+++ b/screen.c
@@ -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);
}