Hide orientation controls on large Android 17 devices, since they won't work.

This commit is contained in:
Henrik Rydgård
2026-06-15 10:31:26 +02:00
parent 26c208c41e
commit 6d98293be9
8 changed files with 28 additions and 9 deletions
+1 -1
View File
@@ -760,7 +760,7 @@ void GamePauseScreen::CreateViews() {
screenManager()->push(new GameScreen(gamePath_, true));
});
if (System_GetPropertyInt(SYSPROP_DEVICE_TYPE) == DEVICE_TYPE_MOBILE) {
if (System_GetPropertyBool(SYSPROP_CAN_RESTRICT_ORIENTATION)) {
AddRotationPicker(screenManager(), middleColumn, false);
}