From baa28d1a8e44c3c38f31c1f73f2b821fb6d5f3a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 14 Feb 2026 13:37:15 +0100 Subject: [PATCH] Try to make the app validation happy. --- ios/AppDelegate.mm | 4 ++++ ios/PPSSPP-Info.plist | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/ios/AppDelegate.mm b/ios/AppDelegate.mm index 94634c1f39..c6b00767b9 100644 --- a/ios/AppDelegate.mm +++ b/ios/AppDelegate.mm @@ -113,6 +113,10 @@ __attribute__((used)) static Class _forceLinkSceneDelegate = [SceneDelegate clas return UIInterfaceOrientationMaskLandscapeRight; case ROTATION_LOCKED_VERTICAL: case ROTATION_LOCKED_VERTICAL180: + if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { + // iPad supports both portrait orientations, so allow them. + return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown; + } // We do not support reverse portrait on iOS. return UIInterfaceOrientationMaskPortrait; case ROTATION_LOCKED_HORIZONTAL180: diff --git a/ios/PPSSPP-Info.plist b/ios/PPSSPP-Info.plist index a8107d0e6f..c39a3e1f6c 100644 --- a/ios/PPSSPP-Info.plist +++ b/ios/PPSSPP-Info.plist @@ -63,7 +63,15 @@ UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UILaunchScreen + + UIColorName + black + UIImageName + LaunchIcon + UILaunchImageFile Default.png UIFileSharingEnabled