From 62ebc527d0b4cd61c262fe61c8e9a5cf5aeba658 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Mon, 28 Mar 2016 21:01:46 +0200 Subject: [PATCH] iOS: Removed not needed SDL_WINDOW_SHOWN from rectangles demo. --- Xcode-iOS/Demos/src/rectangles.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Xcode-iOS/Demos/src/rectangles.c b/Xcode-iOS/Demos/src/rectangles.c index 11e5f135ce9a5..77e2a563b5784 100644 --- a/Xcode-iOS/Demos/src/rectangles.c +++ b/Xcode-iOS/Demos/src/rectangles.c @@ -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"); }