| Code:
|
|
#include "fbgfx.bi"
screenres 320,240,16 Screencontrol(fb.SET_WINDOW_POS,16,16)
' **************************************************************** ' ***************************** BUG 1 **************************** ' **************************************************************** screenlock For CNT As Integer = 1 To 512 Circle(Rnd*320,Rnd*240),100,rgb(Rnd*255,Rnd*255,Rnd*255),,,,f WindowTitle("Count=" & CNT) ' <- this is causing it to update Sleep 1,1 Next CNT screenunlock
' **************************************************************** ' **************************** BUG 2 ***************************** ' **************************************************************** setmouse ,,,1 Screencontrol(fb.SET_WINDOW_POS,400,300) ' <- not updating clip area
Sleep |