From 1aa183e96b6a3ca0712224d06ecfc92fb02efe15 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Thu, 29 May 2003 08:53:21 +0000 Subject: [PATCH] fixed bug in INT10_SCROLLWINDOW Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1024 --- src/ints/int10_char.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ints/int10_char.cpp b/src/ints/int10_char.cpp index e30dbc7d..eb8e8ac2 100644 --- a/src/ints/int10_char.cpp +++ b/src/ints/int10_char.cpp @@ -125,7 +125,7 @@ void INT10_ScrollWindow(Bit8u rul,Bit8u cul,Bit8u rlr,Bit8u clr,Bit8s nlines,Bit /* Copy some lines */ if (nlines>0) { start=rlr-nlines+1; - end=cul; + end=rul; next=-1; } else if (nlines<0) { start=rul-nlines-1;