Browse Source

Tweak AimingGame.cs: adjust resolution and fullscreen logic for mobile/desktop

CartBlanche 2 weeks ago
parent
commit
d3a484c12c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Aiming/Core/AimingGame.cs

+ 2 - 2
Aiming/Core/AimingGame.cs

@@ -36,8 +36,8 @@ namespace Aiming
         {
             graphics = new GraphicsDeviceManager(this);
             Content.RootDirectory = "Content";
-            graphics.PreferredBackBufferWidth = 640;
-            graphics.PreferredBackBufferHeight = 720;
+            graphics.PreferredBackBufferWidth = 480;
+            graphics.PreferredBackBufferHeight = 640;
 #if MOBILE
             graphics.IsFullScreen = true;
 #endif