Removed not needed SDL_WINDOW_SHOWN from iOS example programs.

See bug #1667.
This commit is contained in:
Philipp Wiesemann
2013-07-21 22:09:00 +02:00
parent 17747734e6
commit 178f958a2a
6 changed files with 6 additions and 6 deletions

View File

@@ -389,7 +389,7 @@ main(int argc, char *argv[])
/* create main window and renderer */
window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN |
SDL_WINDOW_OPENGL |
SDL_WINDOW_BORDERLESS);
context = SDL_GL_CreateContext(window);