Fixed a typo, we should set the driverdata if we are 3.2 or newer.
This commit is contained in:
parent
918d8540ea
commit
e2d1d0aec3
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ UIKit_AddDisplay(UIScreen *uiscreen, int w, int h)
|
|||
|
||||
// UIScreenMode showed up in 3.2 (the iPad and later). We're
|
||||
// misusing this supports_multiple_displays flag here for that.
|
||||
if (!SDL_UIKit_supports_multiple_displays) {
|
||||
if (SDL_UIKit_supports_multiple_displays) {
|
||||
UIScreenMode *uimode = [uiscreen currentMode];
|
||||
[uimode retain]; // once for the desktop_mode
|
||||
[uimode retain]; // once for the current_mode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue