mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-01 01:39:15 +02:00
* replaced bl with al in the final bit read in GetPixel16
git-svn-id: trunk@40992 -
This commit is contained in:
parent
5abb5b0658
commit
95f2fffaf8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user