diff options
author | Thierry Crozat | 2018-10-28 17:40:56 +0000 |
---|---|---|
committer | Thierry Crozat | 2018-10-28 17:40:56 +0000 |
commit | b41a3a518a0d2871eab8aa5e3b5d4f9b440d5036 (patch) | |
tree | bbbc09a39a860acf3b51eb436c1191dfb15d8a5c | |
parent | 1f8b4a430f0016c71459f18a77560f9e3e3f2bae (diff) | |
download | scummvm-rg350-b41a3a518a0d2871eab8aa5e3b5d4f9b440d5036.tar.gz scummvm-rg350-b41a3a518a0d2871eab8aa5e3b5d4f9b440d5036.tar.bz2 scummvm-rg350-b41a3a518a0d2871eab8aa5e3b5d4f9b440d5036.zip |
IOS: Attempt to fix compilation with pre-iOS 11 SDK
-rw-r--r-- | backends/platform/ios7/ios7_video.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/ios7/ios7_video.mm b/backends/platform/ios7/ios7_video.mm index 160a905997..955f54a082 100644 --- a/backends/platform/ios7/ios7_video.mm +++ b/backends/platform/ios7/ios7_video.mm @@ -807,7 +807,7 @@ uint getSizeNextPOT(uint size) { if ( [[[UIApplication sharedApplication] keyWindow] respondsToSelector:@selector(safeAreaInsets)] ) { #endif CGRect screenSize = [[UIScreen mainScreen] bounds]; - UIEdgeInsets inset = [[UIApplication sharedApplication] keyWindow].safeAreaInsets; + UIEdgeInsets inset = [[[UIApplication sharedApplication] keyWindow] safeAreaInsets]; UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; CGRect newFrame = screenSize; if ( orientation == UIInterfaceOrientationPortrait ) { |