Maelstrom: Cleaned up window flag hacks

https://github.com/libsdl-org/Maelstrom/commit/e704f397b29bee4760f8546ade834e2237b55a41

From e704f397b29bee4760f8546ade834e2237b55a41 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 19 Sep 2012 23:00:20 -0700
Subject: [PATCH] Cleaned up window flag hacks

---
 screenlib/SDL_FrameBuf.cpp | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/screenlib/SDL_FrameBuf.cpp b/screenlib/SDL_FrameBuf.cpp
index 8a4837d7..dbcdb635 100644
--- a/screenlib/SDL_FrameBuf.cpp
+++ b/screenlib/SDL_FrameBuf.cpp
@@ -48,11 +48,6 @@ FrameBuf:: Init(int width, int height, Uint32 window_flags, Uint32 render_flags,
 #ifdef FAST_ITERATION
 	window_flags &= ~SDL_WINDOW_FULLSCREEN;
 #endif
-#ifdef __IPHONEOS__
-	window_flags |= SDL_WINDOW_FULLSCREEN;
-#endif
-	window_flags |= SDL_WINDOW_RESIZABLE;
-
 	window = SDL_CreateWindow(NULL, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, width, height, window_flags);
 	if (!window) {
 		SetError("Couldn't create %dx%d window: %s",