From: Alan Cox Date: Sat, 30 May 2015 02:02:42 +0000 (+0100) Subject: vt: fix backup over start of line X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=399d78ac1935bbf02c0c7aaf76e95b992b4d83ce;p=FUZIX.git vt: fix backup over start of line --- diff --git a/Kernel/vt.c b/Kernel/vt.c index 1605c2d3..1329df0f 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -51,7 +51,7 @@ static signed char ncursory; static void cursor_fix(void) { if (cursorx < 0) { - cursorx = 0; + cursorx = VT_RIGHT; cursory--; } if (cursory < 0)