I use this little piece for saving out a screenshot, so testers can send these to me to show what was the exact error they experienced in my game.
The only strange problem with this is that it will only save like 2048x1024 instead of the screen size which is in my case is a laptop resolution of 1280x800.
I tested many resolutions to be saved, and it always found the closest 128x128 , 64x64 , etc like pair of numbers as the X & Y dimensions.
Why is it like that, and how can i get around it with native commands?
if returnkey()=1
repeat
inc next_screenShot
if file exist("screenshots\"+str$(next_screenShot)+".jpg")=0 then get image 1000,0,0,screen width(),screen height() : save image "screenshots\"+str$(next_screenShot)+".jpg",1000 : screenDone=1
until screenDone=1
endif