From 3d20bb48a8cb11baf4aedfac72bf9c62c434191c Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Sat, 26 Feb 2011 00:41:31 +0000 Subject: [PATCH] Removed an old hack for resumes from suspended states that caused GS plugins to open twice. This should help with occasional crashes when pressing F9 or when configuring the GS plugin while emulation runs. (Thanks for helping with this, Jake :) ) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4363 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/gui/AppCorePlugins.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsx2/gui/AppCorePlugins.cpp b/pcsx2/gui/AppCorePlugins.cpp index cf1a16e406..0facfa36ef 100644 --- a/pcsx2/gui/AppCorePlugins.cpp +++ b/pcsx2/gui/AppCorePlugins.cpp @@ -571,7 +571,8 @@ void SysExecEvent_SaveSinglePlugin::InvokeEvent() Console.WriteLn( Color_Green, L"Recovering single plugin: " + tbl_PluginInfo[m_pid].GetShortname() ); memLoadingState load( plugstore ); GetCorePlugins().Freeze( m_pid, load ); - GetCorePlugins().Close( m_pid ); // hack for stupid GS plugins. + // GS plugin suspend / resume hack. Removed in r4363, hopefully never to return :p + //GetCorePlugins().Close( m_pid ); // hack for stupid GS plugins. } }