Hello! When I create an application and set the window size, it comes out smaller than I'd like.
For example, a small project with only
// Project: test
// Created: 2015-07-15
// set window properties
SetWindowTitle( "test" )
SetWindowSize( 1366, 768, 0 )
// set display properties
SetVirtualResolution( 1366, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
do
Print( ScreenFPS() )
Sync()
loop
runs and opens a window that is 1239 x 723 (including border).
My laptop's screen is 1366 x 768, but it comes out looking like this:
Quote: "

"
Is there anything I can do to get this the correct size?
Also, I figure I know the answer to this one already,but is there anyway to remove the window border in tier 1 windowed mode?
Thanks a lot!