sdl12-compat: FIXME removal: neither of these FIXMEs match what SDL 1.2 did.

From 2273b30aea8de47b6fe18756d3537bbb969ad429 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Fri, 19 Aug 2022 11:00:55 -0400
Subject: [PATCH] FIXME removal: neither of these FIXMEs match what SDL 1.2
 did.

Reference Issue #143.
---
 src/SDL12_compat.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c
index 5017f2e4..f539e603 100644
--- a/src/SDL12_compat.c
+++ b/src/SDL12_compat.c
@@ -5657,9 +5657,6 @@ SDL_SetVideoMode(int width, int height, int bpp, Uint32 flags12)
 
     SDL_assert((VideoSurface12 != NULL) == (VideoWindow20 != NULL));
 
-    FIXME("don't do anything if the window's dimensions, etc haven't changed.");
-    FIXME("we need to preserve VideoSurface12 (but not its pixels), I think...");
-
     if (VideoSurface12 && ((VideoSurface12->flags & SDL12_OPENGL) != (flags12 & SDL12_OPENGL))) {
         EndVidModeCreate();  /* rebuild the window if moving to/from a GL context */
     } else if (VideoSurface12 && (VideoSurface12->surface20->format->format != appfmt)) {