git-svn-id: https://spexeah.com:8443/svn/Asuro@544 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron
2018-04-26 16:55:27 +00:00
parent 11542b4c34
commit 6d3f6ccbf3
13 changed files with 6 additions and 6 deletions

View File

@ -72,7 +72,7 @@ begin
end;}
for y:=0 to 7 do begin
for x:=0 to 1 do begin
drawPixel64(Last.x + x * 4, Last.y + y, BackPixels[x][y]);
drawPixel64(Last.x + (x * 4), Last.y + y, BackPixels[x][y]);
end;
end;
end;
@ -86,7 +86,7 @@ begin
end;}
for y:=0 to 7 do begin
for x:=0 to 1 do begin
BackPixels[x][y]:= GetPixel64(nx + x * 4, ny + y);
BackPixels[x][y]:= GetPixel64(nx + (x * 4), ny + y);
end;
end;
outputCharToScreenSpace(char(0), nx, ny, $FFFF);