Match the original Pacman dimensions
Move the field up to match original Pacman position.
This commit is contained in:
@ -8,9 +8,9 @@ public class DesktopLauncher {
|
||||
public static void main (String[] arg) {
|
||||
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
||||
config.title = PacDude.TITLE + " - " + PacDude.VERSION;
|
||||
config.width = (224 * 2);
|
||||
config.height = (248 * 2);
|
||||
config.resizable = false;
|
||||
config.width = PacDude.LEVEL_WIDTH * 2;
|
||||
config.height = PacDude.LEVEL_HEIGHT * 2;
|
||||
config.resizable = true;
|
||||
new LwjglApplication(new PacDude(), config);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user