mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
PPCThread removed (it does nothing anyway)
This commit is contained in:
parent
9b2907dc64
commit
be4e85f0f2
13 changed files with 50 additions and 92 deletions
|
|
@ -7,7 +7,7 @@
|
|||
#include "Debugger.h"
|
||||
#include "InterpreterDisAsm.h"
|
||||
#include "Emu/CPU/CPUThreadManager.h"
|
||||
#include "Emu/Cell/PPCThread.h"
|
||||
#include "Emu/CPU/CPUThread.h"
|
||||
|
||||
|
||||
class DbgEmuPanel : public wxPanel
|
||||
|
|
@ -95,7 +95,7 @@ public:
|
|||
break;
|
||||
|
||||
case DID_EXIT_THR_SYSCALL:
|
||||
Emu.GetCPU().RemoveThread(((PPCThread*)event.GetClientData())->GetId());
|
||||
Emu.GetCPU().RemoveThread(((CPUThread*)event.GetClientData())->GetId());
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue