Hi - the app I'm developing runs in fullscreen mode and began working strangely as of yesterday with the new version. The first couple of frames take about 3 seconds to display each.
By some experimentation, I see this only affects full screen mode - I cut everything down to this to prove it.
// Project: Tester
// Created: 2018-05-24
// show all errors
SetErrorMode(2)
// set window properties
SetWindowTitle( "Tester" )
SetWindowSize( 1024, 768, 0 )
// set display properties
SetVirtualResolution( 1024, 768 ) // doesn't have to match the window
SetOrientationAllowed( 1, 1, 1, 1 ) // allow both portrait and landscape on mobile devices
SetSyncRate( 30, 0 ) // 30fps instead of 60 to save battery
SetScissor( 0,0,0,0 ) // use the maximum available screen space, no black borders
UseNewDefaultFonts( 1 ) // since version 2.0.22 we can use nicer default fonts
n=1
do
Print( ScreenFPS() )
print(n)
Sync()
n=n+1
loop
This version runs fine in windowed mode. But if you change to SetWindowSize( 1024, 768, 1 ), you get the same as in my APP, the first two frames take an age...