Bug #135
Updated by Baptiste Pillot over 4 years ago
in in the below code only the circles can be seen on Aoz, the bars on screen 1 can't be seen (tested this code on Amos and both can be seen): ```aoz #manifest:"amiga" #fullScreen:true #splashScreen:false Screen Open 0,320,200,8,Lowres Curs Off : Flash Off : Cls 0 For T=0 To 10 Circle Rnd(320),Rnd(200),Rnd(50)+10 Next Screen Open 1,320,200,8,Lowres Curs Off : Flash Off : Cls 0 For T=1 To 10 BX=Rnd(320) BY=Rnd(200) Bar BX,BY To BX+50,BY+50 Next Dual Playfield 1,0 Wait Key ```