Hi, can i have a windows mode but without the windows tittle bar ?
i just want that mode looks like fullscren, but isn't
you now what i mean?
(this is me without google translate, maibe is hard to understand
)
This is what i have now
only want to hide the top bar.
SetWindowSize( GetDeviceWidth(), GetDeviceHeight(), 0 )
SetWindowAllowResize( 0 ) // allow the user to resize the window
// set display properties
SetVirtualResolution( GetDeviceWidth(), GetDeviceHeight() ) // doesn't have to match the window
SetOrientationAllowed( 1, 1, 1, 1 ) // allow both portrait and landscape on mobile devices
SetSyncRate( 0, 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
MaximizeWindow()