Browse Source

set default non-fullscreen resolution to 720p

main
Colin McMillen 3 years ago
parent
commit
f4d2439263
  1. 4
      DesktopGL/DesktopGLProgram.cs

4
DesktopGL/DesktopGLProgram.cs

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

Loading…
Cancel
Save