Skip to content

Commit

Permalink
Reverted Alex's commit 131cba1768a5 - we're about to release 2.0.6, d…
Browse files Browse the repository at this point in the history
…on't remove support for the iOS 7 SDK yet.
  • Loading branch information
slouken committed Sep 21, 2017
1 parent d452b89 commit f0a324f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/video/uikit/SDL_uikitmessagebox.m
Expand Up @@ -55,6 +55,7 @@
static BOOL
UIKit_ShowMessageBoxAlertController(const SDL_MessageBoxData *messageboxdata, int *buttonid)
{
#ifdef __IPHONE_8_0
int i;
int __block clickedindex = messageboxdata->numbuttons;
const SDL_MessageBoxButtonData *buttons = messageboxdata->buttons;
Expand Down Expand Up @@ -110,6 +111,9 @@

*buttonid = messageboxdata->buttons[clickedindex].buttonid;
return YES;
#else
return NO;
#endif /* __IPHONE_8_0 */
}

/* UIAlertView is deprecated in iOS 8+ in favor of UIAlertController. */
Expand Down
5 changes: 4 additions & 1 deletion src/video/uikit/SDL_uikitmetalview.m
Expand Up @@ -92,9 +92,12 @@ - (void)updateDrawableSize
* backing dimensions of the Metal view will match the pixel
* dimensions of the screen rather than the dimensions in points.
*/
#ifdef __IPHONE_8_0
if ([data.uiwindow.screen respondsToSelector:@selector(nativeScale)]) {
scale = data.uiwindow.screen.nativeScale;
} else {
} else
#endif
{
scale = data.uiwindow.screen.scale;
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/video/uikit/SDL_uikitmodes.m
Expand Up @@ -211,11 +211,13 @@ @implementation SDL_DisplayModeData
availableModes = data.uiscreen.availableModes;
#endif

#ifdef __IPHONE_8_0
/* The UIScreenMode of an iPhone 6 Plus should be 1080x1920 rather than
* 1242x2208 (414x736@3x), so we should use the native scale. */
if ([data.uiscreen respondsToSelector:@selector(nativeScale)]) {
scale = data.uiscreen.nativeScale;
}
#endif

for (UIScreenMode *uimode in availableModes) {
/* The size of a UIScreenMode is in pixels, but we deal exclusively
Expand Down
5 changes: 4 additions & 1 deletion src/video/uikit/SDL_uikitopengles.m
Expand Up @@ -168,9 +168,12 @@ int UIKit_GL_SwapWindow(_THIS, SDL_Window * window)
/* Set the scale to the natural scale factor of the screen - the
* backing dimensions of the OpenGL view will match the pixel
* dimensions of the screen rather than the dimensions in points. */
#ifdef __IPHONE_8_0
if ([data.uiwindow.screen respondsToSelector:@selector(nativeScale)]) {
scale = data.uiwindow.screen.nativeScale;
} else {
} else
#endif
{
scale = data.uiwindow.screen.scale;
}
}
Expand Down

0 comments on commit f0a324f

Please sign in to comment.