From 399d78ac1935bbf02c0c7aaf76e95b992b4d83ce Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 30 May 2015 03:02:42 +0100 Subject: [PATCH] vt: fix backup over start of line --- Kernel/vt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1