iOS: Fixed crashes when rotating the screen after destroying a window.

This commit is contained in:
Alex Szpakowski 2015-11-12 20:58:11 -04:00
parent faee628941
commit 7267835842
1 changed files with 3 additions and 0 deletions

View File

@ -316,6 +316,9 @@ UIKit_DestroyWindow(_THIS, SDL_Window * window)
for (SDL_uikitview *view in views) {
[view setSDLWindow:NULL];
}
data.uiwindow.rootViewController = nil;
data.uiwindow.hidden = YES;
}
}
window->driverdata = NULL;