From 152862a57632e640a1d2a74db1a40452ddd60228 Mon Sep 17 00:00:00 2001
From: Thomas Goyne <plorkyeran@aegisub.org>
Date: Tue, 25 Mar 2014 07:34:15 -0700
Subject: [PATCH] Remove pointless wxSafeYield in FrameMain's constructor

This was needed to make the splash screen appear, and was missed when
the splash screen was killed.
---
 src/frame_main.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/frame_main.cpp b/src/frame_main.cpp
index a24a380a3..2281cf212 100644
--- a/src/frame_main.cpp
+++ b/src/frame_main.cpp
@@ -232,9 +232,6 @@ FrameMain::FrameMain()
 
 	StartupLog("Install PNG handler");
 	wxImage::AddHandler(new wxPNGHandler);
-#ifndef __APPLE__
-	wxSafeYield();
-#endif
 
 	StartupLog("Apply saved Maximized state");
 	if (OPT_GET("App/Maximized")->GetBool()) Maximize(true);
-- 
GitLab