i get the attached screen from this code
// Project: resize
// Created: 2017-03-10
// show all errors
SetErrorMode(2)
// set window properties
SetWindowTitle( "resize" )
SetWindowSize( 1024, 768, 0 )
SetScissor(0, 0, 0, 0)
SetWindowAllowResize(1)
// set display properties
SetVirtualResolution( -1, -1 )
square = LoadSprite("square.png")
do
Print("FPS="+str(ScreenFPS()))
print("Window Width:Height="+str(1024)+":"+str(768))
print("Get bounds Left:Right=Total="+str(GetScreenBoundsLeft())+":"+str(GetScreenBoundsRight())+"="+str(abs(GetScreenBoundsLeft())+GetScreenBoundsRight()))
print("Get bounds Top:Bottom=Total="+str(GetScreenBoundsTop())+":"+str(GetScreenBoundsBottom())+"="+str(abs(GetScreenBoundsTop())+GetScreenBoundsBottom()))
print("Virtual Width:Height="+str(GetVirtualWidth())+":"+str(GetVirtualHeight()))
print("My guess="+str(1024 * (abs(GetScreenBoundsLeft()) + GetScreenBoundsRight())))
Sync()
loop
The big blue area is a 10x10 pixel square???? (attached)