Default screen size changed to a 16:9 ratio

This commit is contained in:
Allexit 2015-04-08 21:41:12 +03:00
parent 962dde9db2
commit ff859b6501
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = GlobalStrings.GAME_NAME;
config.width = 720;
config.height = 480;
config.width = 1280;
config.height = 720;
new LwjglApplication(new GladiatorBrawler(), config);
}
}