From 0630d65cc619d6535ed05145fdd5486d611e620f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 27 Aug 2025 16:04:34 -0400 Subject: [PATCH] v3.2.3: fixed window resolution setting always returning 1080p --- .../com/shatteredpixel/shatteredpixeldungeon/SPDSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) ); }