Bug #539
In Amiga mode, the Plot command draws dots that are of inconsistent size and shape.
Start date:
10/04/2020
Due date:
% Done:
0%
Estimated time:
2:00 h
Affected version:
Description
The following code should display a grid of evenly spaced dots, all exactly the same size.
Updated by Brian Flanagan over 2 years ago
The code works fine in AOZ/PC mode, but not in Amiga mode.
#manifest: "amiga" #speed: "safe" #displayWidth: 320 #displayHeight: 256 scrWidth=320 : scrHeight=256 Screen Open 0,scrWidth,scrHeight,32,Lowres If Manifest$="amiga" Palette $000,$0F0 Else Palette $000000,$00FF00 End If Flash Off : Curs Off : Cls 0 Ink 1 ' green For x=0 To 319 Step 2 For y=0 To 199 Step 2 Plot x,y Next y Next x
Updated by Francois Lionet over 2 years ago
- Status changed from New to Feedback
- Assignee changed from AOZ Studio Team to Francois Lionet
Not much can be done against that for the moment I am afraid. This is due to the scaling of a small screen for displaying in a larger screen, and the rounding in calculations.
This will be corrected when finally I have time to implement the real Amiga renderer.