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); - } }