v3.2.3: fixed window resolution setting always returning 1080p

This commit is contained in:
Evan Debenham
2025-08-27 16:04:34 -04:00
parent d519316314
commit 0630d65cc6

View File

@@ -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 )
);
}