* use stosb instead of mov to draw the pixel inside the asm version of PutPixel320

git-svn-id: trunk@40923 -
This commit is contained in:
nickysn 2019-01-19 21:33:26 +00:00
parent 9f4e6c48b3
commit 25c3981236

View File

@ -2270,7 +2270,7 @@ End;
shr ax, 1
add di, ax
mov al, byte ptr [Pixel]
mov es:[di], al
stosb
@@Done:
end ['ax','di'];
end;