From 9e44b1e93f1f05d84ca7ad06ac691a83bf6a9c08 Mon Sep 17 00:00:00 2001 From: Matt Low Date: Thu, 22 Nov 2018 17:37:15 +0400 Subject: [PATCH] Change desktop resolution to 1/5th of native resolution --- .../src/com/me/brickbuster/desktop/DesktopLauncher.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/desktop/src/com/me/brickbuster/desktop/DesktopLauncher.java b/desktop/src/com/me/brickbuster/desktop/DesktopLauncher.java index d4accf7..c9ed0b2 100644 --- a/desktop/src/com/me/brickbuster/desktop/DesktopLauncher.java +++ b/desktop/src/com/me/brickbuster/desktop/DesktopLauncher.java @@ -7,12 +7,9 @@ import com.me.brickbuster.BrickBuster; public class DesktopLauncher { public static void main (String[] arg) { LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); - config.width = 450; - config.height = 800; + config.width = 432; + config.height = 768; config.title = BrickBuster.TITLE; - //config.vSyncEnabled = false; - //config.foregroundFPS = 0; new LwjglApplication(new BrickBuster(), config); - } }