浏览代码

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

CartBlanche 2 周之前
父节点
当前提交
d3a484c12c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Aiming/Core/AimingGame.cs

+ 2 - 2
Aiming/Core/AimingGame.cs

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