mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
fixed_typemap.hpp: return reference
This commit is contained in:
parent
bbf52f3cea
commit
ea5e837bd6
87 changed files with 3028 additions and 2997 deletions
|
@ -444,14 +444,14 @@ void cpu_thread::operator()()
|
|||
{
|
||||
case 1:
|
||||
{
|
||||
//g_fxo->get<cpu_profiler>()->registered.push(id);
|
||||
//g_fxo->get<cpu_profiler>().registered.push(id);
|
||||
break;
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
if (g_cfg.core.spu_prof)
|
||||
{
|
||||
g_fxo->get<cpu_profiler>()->registered.push(id);
|
||||
g_fxo->get<cpu_profiler>().registered.push(id);
|
||||
}
|
||||
|
||||
break;
|
||||
|
@ -763,7 +763,7 @@ bool cpu_thread::check_state() noexcept
|
|||
{
|
||||
if (state0 & cpu_flag::dbg_pause)
|
||||
{
|
||||
g_fxo->get<gdb_server>()->pause_from(this);
|
||||
g_fxo->get<gdb_server>().pause_from(this);
|
||||
}
|
||||
|
||||
cpu_wait(state1);
|
||||
|
@ -1159,6 +1159,6 @@ void cpu_thread::flush_profilers() noexcept
|
|||
|
||||
if (g_cfg.core.spu_prof || false)
|
||||
{
|
||||
g_fxo->get<cpu_profiler>()->registered.push(0);
|
||||
g_fxo->get<cpu_profiler>().registered.push(0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue