sdl12-compat: macos: Don't need this in 1.2 SDLmain; SDL2 does this for us.

From ca53ab4bf85c219a68a30a8bc91a5ca71442962f Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Mon, 13 Dec 2021 23:04:27 -0500
Subject: [PATCH] macos: Don't need this in 1.2 SDLmain; SDL2 does this for us.

---
 src/SDLmain/macosx/SDLMain.m | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/SDLmain/macosx/SDLMain.m b/src/SDLmain/macosx/SDLMain.m
index a899beb..0b444e7 100644
--- a/src/SDLmain/macosx/SDLMain.m
+++ b/src/SDLmain/macosx/SDLMain.m
@@ -262,14 +262,6 @@ - (void) applicationDidFinishLaunching: (NSNotification *) note
 {
     int status;
 
-    /* Get more aggressive about activation for Catalina and later: activate the Dock first so we definitely reset all activation state. */
-    for (NSRunningApplication *i in [NSRunningApplication runningApplicationsWithBundleIdentifier:@"com.apple.dock"]) {
-        [i activateWithOptions:NSApplicationActivateIgnoringOtherApps];
-        break;
-    }
-    SDL_Delay(300);  /* !!! FIXME: this isn't right. */
-    [NSApp activateIgnoringOtherApps:YES];
-
     /* Set the working directory to the .app's parent directory */
     [self setupWorkingDirectory:gFinderLaunch];