iOS: I don't think SDL compiles with the iOS 7 SDK anymore, so we might as well drop the #ifdefs trying to guard for that.

Alex Szpakowski 2017-09-20 11:01:32 -03:00
parent 12fb004fba
commit d452b89f9b
4 changed files with 2 additions and 14 deletions

View File

@ -55,7 +55,6 @@ UIKit_WaitUntilMessageBoxClosed(const SDL_MessageBoxData *messageboxdata, int *c
static BOOL static BOOL
UIKit_ShowMessageBoxAlertController(const SDL_MessageBoxData *messageboxdata, int *buttonid) UIKit_ShowMessageBoxAlertController(const SDL_MessageBoxData *messageboxdata, int *buttonid)
{ {
#ifdef __IPHONE_8_0
int i; int i;
int __block clickedindex = messageboxdata->numbuttons; int __block clickedindex = messageboxdata->numbuttons;
const SDL_MessageBoxButtonData *buttons = messageboxdata->buttons; const SDL_MessageBoxButtonData *buttons = messageboxdata->buttons;
@ -111,9 +110,6 @@ UIKit_ShowMessageBoxAlertController(const SDL_MessageBoxData *messageboxdata, in
*buttonid = messageboxdata->buttons[clickedindex].buttonid; *buttonid = messageboxdata->buttons[clickedindex].buttonid;
return YES; return YES;
#else
return NO;
#endif /* __IPHONE_8_0 */
} }
/* UIAlertView is deprecated in iOS 8+ in favor of UIAlertController. */ /* UIAlertView is deprecated in iOS 8+ in favor of UIAlertController. */

View File

@ -92,12 +92,9 @@ UIKit_Mtl_AddMetalView(SDL_Window* window)
* backing dimensions of the Metal view will match the pixel * backing dimensions of the Metal view will match the pixel
* dimensions of the screen rather than the dimensions in points. * dimensions of the screen rather than the dimensions in points.
*/ */
#ifdef __IPHONE_8_0
if ([data.uiwindow.screen respondsToSelector:@selector(nativeScale)]) { if ([data.uiwindow.screen respondsToSelector:@selector(nativeScale)]) {
scale = data.uiwindow.screen.nativeScale; scale = data.uiwindow.screen.nativeScale;
} else } else {
#endif
{
scale = data.uiwindow.screen.scale; scale = data.uiwindow.screen.scale;
} }
} }

View File

@ -211,13 +211,11 @@ UIKit_GetDisplayModes(_THIS, SDL_VideoDisplay * display)
availableModes = data.uiscreen.availableModes; availableModes = data.uiscreen.availableModes;
#endif #endif
#ifdef __IPHONE_8_0
/* The UIScreenMode of an iPhone 6 Plus should be 1080x1920 rather than /* The UIScreenMode of an iPhone 6 Plus should be 1080x1920 rather than
* 1242x2208 (414x736@3x), so we should use the native scale. */ * 1242x2208 (414x736@3x), so we should use the native scale. */
if ([data.uiscreen respondsToSelector:@selector(nativeScale)]) { if ([data.uiscreen respondsToSelector:@selector(nativeScale)]) {
scale = data.uiscreen.nativeScale; scale = data.uiscreen.nativeScale;
} }
#endif
for (UIScreenMode *uimode in availableModes) { for (UIScreenMode *uimode in availableModes) {
/* The size of a UIScreenMode is in pixels, but we deal exclusively /* The size of a UIScreenMode is in pixels, but we deal exclusively

View File

@ -168,12 +168,9 @@ UIKit_GL_CreateContext(_THIS, SDL_Window * window)
/* Set the scale to the natural scale factor of the screen - the /* Set the scale to the natural scale factor of the screen - the
* backing dimensions of the OpenGL view will match the pixel * backing dimensions of the OpenGL view will match the pixel
* dimensions of the screen rather than the dimensions in points. */ * dimensions of the screen rather than the dimensions in points. */
#ifdef __IPHONE_8_0
if ([data.uiwindow.screen respondsToSelector:@selector(nativeScale)]) { if ([data.uiwindow.screen respondsToSelector:@selector(nativeScale)]) {
scale = data.uiwindow.screen.nativeScale; scale = data.uiwindow.screen.nativeScale;
} else } else {
#endif
{
scale = data.uiwindow.screen.scale; scale = data.uiwindow.screen.scale;
} }
} }