From 78cb289fde2d84a22eaac204e2768fd21c313481 Mon Sep 17 00:00:00 2001 From: geijoenr Date: Sat, 21 Mar 2015 17:46:08 +0000 Subject: [PATCH] vt: return to mode 0 after ESC Y --- Kernel/vt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/vt.c b/Kernel/vt.c index 4f95b8d8..1605c2d3 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -182,6 +182,7 @@ void vtoutput(unsigned char *p, unsigned int len) cursory = ncursory; if (ncursorx >= 0 && ncursorx <= VT_RIGHT) cursorx = ncursorx; + vtmode = 0; } } cursor_on(cursory, cursorx); -- 2.34.1