Pārlūkot izejas kodu

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

CartBlanche 2 nedēļas atpakaļ
vecāks
revīzija
d3a484c12c
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  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