diff options
Diffstat (limited to 'arch/x86/boot/video.c')
| -rw-r--r-- | arch/x86/boot/video.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/arch/x86/boot/video.c b/arch/x86/boot/video.c index f767164cd5df..43eda284d27f 100644 --- a/arch/x86/boot/video.c +++ b/arch/x86/boot/video.c @@ -298,11 +298,18 @@ static void restore_screen(void)  	}  	/* Restore cursor position */ +	if (saved.curx >= xs) +		saved.curx = xs-1; +	if (saved.cury >= ys) +		saved.cury = ys-1; +  	initregs(&ireg);  	ireg.ah = 0x02;		/* Set cursor position */  	ireg.dh = saved.cury;  	ireg.dl = saved.curx;  	intcall(0x10, &ireg, NULL); + +	store_cursor_position();  }  void set_video(void) | 
