mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
c86fff7760
commit
3d20bb48a8
|
@ -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.
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue