* replaced bl with al in the final bit read in GetPixel16

git-svn-id: trunk@40992 -
This commit is contained in:
nickysn 2019-01-22 14:34:47 +00:00
parent 5abb5b0658
commit 95f2fffaf8

View File

@ -1731,10 +1731,10 @@ end;
{ read plane 0 }
dec ax { Select plane to read }
out dx,al
mov bl,es:[si]
and bl,bh
mov al,es:[si]
and al,bh
rol ah,1
or ah,bl { save bit in AH }
or ah,al { save bit in AH }
inc cx
rol ah,cl