mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
cpu_thread compressed
This commit is contained in:
parent
9db7de29fb
commit
7a921cbdf9
10 changed files with 52 additions and 39 deletions
|
@ -70,7 +70,7 @@ static std::unordered_map<u32, ppu_function_t, ppu_addr_hash> s_ppu_compiled; //
|
|||
|
||||
std::string PPUThread::get_name() const
|
||||
{
|
||||
return fmt::format("PPU[0x%x] Thread (%s)", id, name);
|
||||
return fmt::format("PPU[0x%x] Thread (%s)", id, m_name);
|
||||
}
|
||||
|
||||
std::string PPUThread::dump() const
|
||||
|
@ -298,7 +298,8 @@ PPUThread::~PPUThread()
|
|||
}
|
||||
|
||||
PPUThread::PPUThread(const std::string& name)
|
||||
: cpu_thread(cpu_type::ppu, name)
|
||||
: cpu_thread(cpu_type::ppu)
|
||||
, m_name(name)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue