mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
vm::var improved, cleanup
Mostly vm::var initialization introduced. Added vm::make_var function.
This commit is contained in:
parent
cc02a147d3
commit
a974ee009e
116 changed files with 2763 additions and 3019 deletions
|
|
@ -148,9 +148,9 @@ void sysutilSendSystemCommand(u64 status, u64 param)
|
|||
{
|
||||
if (cb.func)
|
||||
{
|
||||
Emu.GetCallbackManager().Register([=](CPUThread& CPU) -> s32
|
||||
Emu.GetCallbackManager().Register([=](PPUThread& ppu) -> s32
|
||||
{
|
||||
cb.func(static_cast<PPUThread&>(CPU), status, param, cb.arg);
|
||||
cb.func(ppu, status, param, cb.arg);
|
||||
return CELL_OK;
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue