Hello
This code:
SetVirtualResolution(1280, 720)
SetWindowSize(1280, 720, 0)
color = MakeColor(255, 255, 255)
do
for y = 0 to 10
for x = 0 to 10
DrawBox(x * 11, y * 11, x * 11 + 10, y * 11 + 10, color, color, color, color, 1)
next x
next y
Sync()
loop
gives me this image:
This code:
SetVirtualResolution(1280, 720)
SetWindowSize(1280, 720, 0)
color = MakeColor(255, 255, 255)
do
for y = 0 to 10
for x = 0 to 10
DrawBox(x * 11, y * 11, x * 11 + 10, y * 11 + 10, color, color, color, color, 0)
next x
next y
Sync()
loop
gives me this image:
Does that have any relation to your problem?
13/0