Change desktop resolution to 1/5th of native resolution

This commit is contained in:
Matt Low 2018-11-22 17:37:15 +04:00
parent 7ff4d3307a
commit 9e44b1e93f

View File

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