11-03-2025, 02:49 AM
@NakedApe
Over-worked - yep, that's me.
In both programs, find and change the
line to
Tweak the resolution for your display.
I think it may be an issue with the _DESKTOP* functions. I have a feeling that those get usable values a little late compared to other platforms. I'll dig deeper when I get some time.
@MasterGy This is a kickass demo. Well done! But please add a way to exit the program. I had a hard time doing that with the app running full screen on my Mac. There may be a way, but I am a Mac noob.
Over-worked - yep, that's me.

In both programs, find and change the
Code: (Select All)
SCREEN _NEWIMAGE(_DESKTOPWIDTH / 2, _DESKTOPHEIGHT / 2, 32)
line to
Code: (Select All)
SCREEN _NEWIMAGE(1600, 900, 32)
Tweak the resolution for your display.
I think it may be an issue with the _DESKTOP* functions. I have a feeling that those get usable values a little late compared to other platforms. I'll dig deeper when I get some time.
@MasterGy This is a kickass demo. Well done! But please add a way to exit the program. I had a hard time doing that with the app running full screen on my Mac. There may be a way, but I am a Mac noob.

