mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 02:38:37 +12:00
IdManager improved
This commit is contained in:
parent
6c189511af
commit
591a6c8671
43 changed files with 408 additions and 307 deletions
|
@ -238,7 +238,7 @@ SPUThread::~SPUThread()
|
|||
}
|
||||
|
||||
SPUThread::SPUThread(const std::string& name)
|
||||
: cpu_thread()
|
||||
: cpu_thread(idm::last_id())
|
||||
, m_name(name)
|
||||
, index(0)
|
||||
, offset(0)
|
||||
|
@ -246,7 +246,7 @@ SPUThread::SPUThread(const std::string& name)
|
|||
}
|
||||
|
||||
SPUThread::SPUThread(const std::string& name, u32 index)
|
||||
: cpu_thread()
|
||||
: cpu_thread(idm::last_id())
|
||||
, m_name(name)
|
||||
, index(index)
|
||||
, offset(verify("SPU LS" HERE, vm::alloc(0x40000, vm::main)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue