forked from dolphin-emu/dolphin
Really unload gfx+dsp plugins between runs.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2322 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@@ -202,16 +202,16 @@ void CPluginManager::ShutdownPlugins()
|
||||
{
|
||||
m_video->Shutdown();
|
||||
// This is needed for Stop and Start to work
|
||||
//delete m_video;
|
||||
//m_video = NULL;
|
||||
delete m_video;
|
||||
m_video = NULL;
|
||||
}
|
||||
|
||||
if (m_dsp)
|
||||
{
|
||||
m_dsp->Shutdown();
|
||||
// This is needed for Stop and Start to work
|
||||
//delete m_dsp;
|
||||
//m_dsp = NULL;
|
||||
delete m_dsp;
|
||||
m_dsp = NULL;
|
||||
}
|
||||
}
|
||||
//////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user