I am having probs with win32 screen resolutions.
This doesn't report the correct screen sizes set by setscreen.
LOCAL w,h,w2,h2
SETSCREEN 640,480,0//1280,720,0
SHOWSCREEN
GETSCREENSIZE w,h
DEBUG "\nw,h "+w+","+h
SETSCREEN 800,600,0//1280,720,0
SHOWSCREEN
GETSCREENSIZE w2,h2
DEBUG "\nw,h "+w2+","+h2