From 073e5e2f3a809e42fb5547dfeaa2da8c2c02a85d Mon Sep 17 00:00:00 2001 From: "avihal@gmail.com" Date: Sat, 23 Jul 2011 10:19:53 +0000 Subject: [PATCH] Reverting r4796 (Console window now opens again before main window). Reason: The console window's menus were overlapping the main window menus, leading to main window menu actions getting invoked when using the console menus... git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4818 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/AppInit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index 975e39e762..d1da9d5527 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -466,9 +466,9 @@ bool Pcsx2App::OnInit() // Start GUI and/or Direct Emulation // ------------------------------------- if( Startup.ForceConsole ) g_Conf->ProgLogBox.Visible = true; - if( m_UseGUI ) OpenMainFrame(); OpenProgramLog(); AllocateCoreStuffs(); + if( m_UseGUI ) OpenMainFrame(); (new GameDatabaseLoaderThread())->Start();