08-01-2022, 07:49 PM
A simpler demo of the resize breaking:
Code: (Select All)
Screen _NewImage(1024, 720, 32)
$Resize:On
_Delay .2: clearFlag = _Resize 'Comment this line out and watch as _RESIZE triggers with our initial screen creation event
Do
If _Resize Then
RW = _ResizeWidth: RH = _ResizeHeight
If RW < 640 Then RW = 640
d = _Display
Screen _NewImage(RW, RH, 32)
_FreeImage d
' _Delay .2: clearFlag = _Resize 'if it's needed above, it should be needed hear to clear our manual resize
Print _Width, _Height, RW, RH
End If
_Limit 30
Loop