- Improved PPU decoder

This commit is contained in:
DH 2013-07-01 15:08:58 +03:00
parent 1f6a7560e4
commit 4486cbb855
10 changed files with 902 additions and 500 deletions

View file

@ -39,7 +39,8 @@ void PPCThreadManager::RemoveThread(const u32 id)
wxGetApp().SendDbgCommand(DID_REMOVE_THREAD, &m_threads[i]);
m_threads[i].Close();
m_threads.RemoveAt(i);
delete &m_threads[i];
m_threads.RemoveFAt(i);
break;
}