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
This commit is contained in:
ramapcsx2 2011-02-26 00:41:31 +00:00
parent c86fff7760
commit 3d20bb48a8
1 changed files with 2 additions and 1 deletions

View File

@ -571,7 +571,8 @@ void SysExecEvent_SaveSinglePlugin::InvokeEvent()
Console.WriteLn( Color_Green, L"Recovering single plugin: " + tbl_PluginInfo[m_pid].GetShortname() ); Console.WriteLn( Color_Green, L"Recovering single plugin: " + tbl_PluginInfo[m_pid].GetShortname() );
memLoadingState load( plugstore ); memLoadingState load( plugstore );
GetCorePlugins().Freeze( m_pid, load ); 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.
} }
} }