iOS: Removed not needed SDL_WINDOW_SHOWN from rectangles demo.

This commit is contained in:
Philipp Wiesemann 2016-03-28 21:01:46 +02:00
parent bd60850b82
commit 62ebc527d0
1 changed files with 1 additions and 3 deletions

View File

@ -52,9 +52,7 @@ main(int argc, char *argv[])
srand(time(NULL));
/* create window and renderer */
window =
SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
SDL_WINDOW_SHOWN);
window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0);
if (window == 0) {
fatalError("Could not initialize Window");
}