mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
CALL_FUNC macro fixed
Now it can call any HLE function, possibly using LLE if available.
This commit is contained in:
parent
da4bf43fb2
commit
093ecc0a02
7 changed files with 787 additions and 788 deletions
|
|
@ -276,13 +276,11 @@ s32 sys_lwmutex_unlock(PPUThread& ppu, vm::ptr<sys_lwmutex_t> lwmutex)
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
u32 g_ppu_func_index__sys_lwmutex_unlock; // test
|
||||
|
||||
void sysPrxForUser_sys_lwmutex_init()
|
||||
{
|
||||
REG_FUNC(sysPrxForUser, sys_lwmutex_create);
|
||||
REG_FUNC(sysPrxForUser, sys_lwmutex_destroy);
|
||||
REG_FUNC(sysPrxForUser, sys_lwmutex_lock);
|
||||
REG_FUNC(sysPrxForUser, sys_lwmutex_trylock);
|
||||
g_ppu_func_index__sys_lwmutex_unlock = REG_FUNC(sysPrxForUser, sys_lwmutex_unlock); // test
|
||||
REG_FUNC(sysPrxForUser, sys_lwmutex_unlock);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue