From f2d067fe7f568dc8b28b4cd6694a1a8445d79800 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Thu, 16 Oct 2014 23:52:14 +0200 Subject: [PATCH] (OSX) Start cutting down on apple_run_core --- apple/OSX/platform.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apple/OSX/platform.m b/apple/OSX/platform.m index a16c75b214..758f5db447 100644 --- a/apple/OSX/platform.m +++ b/apple/OSX/platform.m @@ -273,6 +273,8 @@ static char** waiting_argv; if (g_extern.system.shutdown) return; + + /* TODO - rewrite this. */ cb = (NSComboBox*)[[self.coreSelectSheet contentView] viewWithTag:1]; #if defined(MAC_OS_X_VERSION_10_6) @@ -281,7 +283,9 @@ static char** waiting_argv; #endif if (!g_extern.main_is_init) - apple_run_core(0, NULL, self.core.UTF8String, g_extern.fullpath); + { + /* Load core/content here. */ + } else g_extern.system.shutdown = true; }