set default non-fullscreen resolution to 720p

This commit is contained in:
Colin McMillen 2021-02-08 17:26:04 -05:00
parent 123ea724d0
commit f4d2439263

View File

@ -24,8 +24,8 @@ namespace SemiColinGames {
graphics.PreferredBackBufferHeight = graphics.GraphicsDevice.DisplayMode.Height; graphics.PreferredBackBufferHeight = graphics.GraphicsDevice.DisplayMode.Height;
} else { } else {
window.IsBorderless = false; window.IsBorderless = false;
graphics.PreferredBackBufferWidth = 1920; graphics.PreferredBackBufferWidth = 1280;
graphics.PreferredBackBufferHeight = 1080; graphics.PreferredBackBufferHeight = 720;
} }
Debug.WriteLine("display: {0}x{1}, fullscreen={2}", Debug.WriteLine("display: {0}x{1}, fullscreen={2}",
graphics.PreferredBackBufferWidth, graphics.PreferredBackBufferWidth,