mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 00:08:12 +02:00
* Some nested loop improvements. fixes issue #40250
This commit is contained in:
parent
5da20fc860
commit
75256399b8
@ -108,8 +108,8 @@ begin
|
||||
vga_drawline(x, y, x, y + yw - 1);
|
||||
end;
|
||||
|
||||
for x := 0 to 63 do
|
||||
for y := 0 to 63 do
|
||||
for y := 0 to 63 do
|
||||
for x := 0 to 63 do
|
||||
begin
|
||||
vga_setrgbcolor(x * 4 + 3, y * 4 + 3, 0);
|
||||
vga_drawpixel(xmax div 2 - 160 + x, y + ymax div 2 - 80);
|
||||
|
Loading…
Reference in New Issue
Block a user