1
0
Fork 0

fixed bug in INT10_SCROLLWINDOW

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1024
This commit is contained in:
Peter Veenstra 2003-05-29 08:53:21 +00:00
parent 1471f0d319
commit 1aa183e96b

View file

@ -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;