summaryrefslogtreecommitdiffstats
path: root/desktop/src/ch/asynk/tankontank
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-12-10 22:46:33 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2014-12-10 22:46:33 +0100
commitcc31895064ce8f88577ce64a2a9af832879c01ed (patch)
treeef39975669ad00a04eacbf8ee0724cf6479213ec /desktop/src/ch/asynk/tankontank
parent9bc2a951aafb7f955f2ce56648a0f11576ec4a3a (diff)
downloadRustAndDust-cc31895064ce8f88577ce64a2a9af832879c01ed.zip
RustAndDust-cc31895064ce8f88577ce64a2a9af832879c01ed.tar.gz
desktop: 1024x768
Diffstat (limited to 'desktop/src/ch/asynk/tankontank')
-rw-r--r--desktop/src/ch/asynk/tankontank/desktop/DesktopLauncher.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/desktop/src/ch/asynk/tankontank/desktop/DesktopLauncher.java b/desktop/src/ch/asynk/tankontank/desktop/DesktopLauncher.java
index 966cfce..0d01f1a 100644
--- a/desktop/src/ch/asynk/tankontank/desktop/DesktopLauncher.java
+++ b/desktop/src/ch/asynk/tankontank/desktop/DesktopLauncher.java
@@ -9,8 +9,10 @@ public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = "Tank On Tank";
- config.width = 800;
- config.height = 682;
+ // config.width = 800;
+ // config.height = 600;
+ config.width = 1024;
+ config.height = 768;
config.addIcon("data/icon.png", Files.FileType.Internal);
new LwjglApplication(new TankOnTank(), config);
}