From c5f84cf239735400e9626a2ad02709a8ba10a248 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 16 Dec 2014 23:13:30 +0000 Subject: [PATCH] vt: don't vanish the cursor on vt switches This will need revisiting because the vt implementations mostly keep a single 'what was under the cursor' and 'cursor address'. We may need to make these live in a standard place and save them too. --- Kernel/vt.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Kernel/vt.c b/Kernel/vt.c index 901e413a..bd2e7997 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -193,7 +193,6 @@ void vtinit(void) void vt_save(struct vt_switch *vt) { - cursor_off(); vt->vtmode = vtmode; vt->cursorx = cursorx; vt->cursory = cursory; @@ -206,7 +205,6 @@ void vt_load(struct vt_switch *vt) cursorx = vt->cursorx; cursory = vt->cursory; ncursory = vt->ncursory; - cursor_on(cursory, cursorx); } #endif -- 2.34.1