From a4c25780ab38d0764a1f510e41161e99f1e9b193 Mon Sep 17 00:00:00 2001 From: hpa Date: Mon, 9 Apr 2001 23:16:06 +0000 Subject: [PATCH] Always use ScrollAttribute for scrolling. --- isolinux.asm | 2 +- ldlinux.asm | 2 +- pxelinux.asm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/isolinux.asm b/isolinux.asm index ea8a534..7c812f2 100644 --- a/isolinux.asm +++ b/isolinux.asm @@ -3156,7 +3156,7 @@ msg_line_wrap: ; Screen wraparound msg_scroll: xor cx,cx ; Upper left hand corner mov dx,[ScreenSize] mov [CursorRow],dh ; New cursor at the bottom - mov bh,[TextAttribute] + mov bh,[ScrollAttribute] mov ax,0601h ; Scroll up one line int 10h jmp short msg_gotoxy diff --git a/ldlinux.asm b/ldlinux.asm index 3b1c1d1..e0ac944 100644 --- a/ldlinux.asm +++ b/ldlinux.asm @@ -3141,7 +3141,7 @@ msg_line_wrap: ; Screen wraparound msg_scroll: xor cx,cx ; Upper left hand corner mov dx,[ScreenSize] mov [CursorRow],dh ; New cursor at the bottom - mov bh,[TextAttribute] + mov bh,[ScrollAttribute] mov ax,0601h ; Scroll up one line int 10h jmp short msg_gotoxy diff --git a/pxelinux.asm b/pxelinux.asm index 0490d12..3fdae1b 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -3165,7 +3165,7 @@ msg_line_wrap: ; Screen wraparound msg_scroll: xor cx,cx ; Upper left hand corner mov dx,[ScreenSize] mov [CursorRow],dh ; New cursor at the bottom - mov bh,[TextAttribute] + mov bh,[ScrollAttribute] mov ax,0601h ; Scroll up one line int 10h jmp short msg_gotoxy -- 2.7.4