v0.8.0a: reduced the minimum window size in desktop mode

This commit is contained in:
Evan Debenham
2020-04-27 01:11:38 -04:00
parent e1fb7600df
commit 8b40399aa7
2 changed files with 3 additions and 3 deletions
@@ -267,8 +267,8 @@ public class SPDSettings extends GameSettings {
public static Point windowResolution(){
return new Point(
getInt( KEY_WINDOW_WIDTH, 960, 960, Integer.MAX_VALUE ),
getInt( KEY_WINDOW_HEIGHT, 640, 640, Integer.MAX_VALUE )
getInt( KEY_WINDOW_WIDTH, 960, 480, Integer.MAX_VALUE ),
getInt( KEY_WINDOW_HEIGHT, 640, 320, Integer.MAX_VALUE )
);
}