diff options
author | Stuart Carnie <stuart.carnie@gmail.com> | 2024-02-20 05:52:00 +1100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-20 11:55:21 +0200 |
commit | 41875d8aef8fc2e4f245a0be2697030116d62569 (patch) | |
tree | ced22c011dfaaf23151de826d5edd9e4c5d0f9d1 /platform/ios | |
parent | 5ebfc8a6ba1dec27157f48fc49ede54ea6676720 (diff) | |
download | redot-engine-41875d8aef8fc2e4f245a0be2697030116d62569.tar.gz |
macOS/iOS: Fix various warnings when targeting newer SDKs
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/godot_view.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/ios/godot_view.mm b/platform/ios/godot_view.mm index 1dddc9306e..e910036198 100644 --- a/platform/ios/godot_view.mm +++ b/platform/ios/godot_view.mm @@ -441,6 +441,9 @@ static const float earth_gravity = 9.80665; UIInterfaceOrientation interfaceOrientation = UIInterfaceOrientationUnknown; +#if __IPHONE_OS_VERSION_MAX_ALLOWED < 140000 + interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation]; +#else if (@available(iOS 13, *)) { interfaceOrientation = [UIApplication sharedApplication].delegate.window.windowScene.interfaceOrientation; #if !defined(TARGET_OS_SIMULATOR) || !TARGET_OS_SIMULATOR @@ -448,6 +451,7 @@ static const float earth_gravity = 9.80665; interfaceOrientation = [[UIApplication sharedApplication] statusBarOrientation]; #endif } +#endif switch (interfaceOrientation) { case UIInterfaceOrientationLandscapeLeft: { |