Browse Source

* replaced 'mov al,es:[si]' with 'seges lodsb' in GetPixel16

git-svn-id: trunk@40993 -
nickysn 6 years ago
parent
commit
8cf2792c89
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/graph/src/msdos/graph.pp

+ 1 - 1
packages/graph/src/msdos/graph.pp

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