v3.2.2: fullscreen now defaults on in Android and is forced on in iOS

This commit is contained in:
Evan Debenham
2025-08-24 16:56:06 -04:00
parent a3901bb104
commit 01bc465114
3 changed files with 6 additions and 17 deletions

View File

@@ -64,7 +64,7 @@ public class SPDSettings extends GameSettings {
}
public static boolean fullscreen() {
return getBoolean( KEY_FULLSCREEN, DeviceCompat.isDesktop() );
return getBoolean( KEY_FULLSCREEN, true );
}
public static void zoom( int value ) {
@@ -437,8 +437,8 @@ public class SPDSettings extends GameSettings {
public static Point windowResolution(){
return new Point(
getInt( KEY_WINDOW_WIDTH, 800, 720, Integer.MAX_VALUE ),
getInt( KEY_WINDOW_HEIGHT, 600, 400, Integer.MAX_VALUE )
1920,
1080
);
}