diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDSettings.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDSettings.java index 65b19066d..d5ab90592 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDSettings.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/SPDSettings.java @@ -437,8 +437,8 @@ public class SPDSettings extends GameSettings { public static Point windowResolution(){ return new Point( - 1920, - 1080 + getInt( KEY_WINDOW_WIDTH, 800, 720, Integer.MAX_VALUE ), + getInt( KEY_WINDOW_HEIGHT, 600, 400, Integer.MAX_VALUE ) ); }