mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 05:45:21 +00:00
vm::cptr/bcptr/lcptr used widely for const pointers
This commit is contained in:
parent
e896da8064
commit
317417d541
97 changed files with 781 additions and 781 deletions
|
|
@ -59,11 +59,11 @@ lv2_timer_t::~lv2_timer_t()
|
|||
thread.join();
|
||||
}
|
||||
|
||||
s32 sys_timer_create(vm::ref<u32> timer_id)
|
||||
s32 sys_timer_create(vm::ptr<u32> timer_id)
|
||||
{
|
||||
sys_timer.Warning("sys_timer_create(timer_id=*0x%x)", timer_id);
|
||||
|
||||
timer_id = Emu.GetIdManager().make<lv2_timer_t>();
|
||||
*timer_id = Emu.GetIdManager().make<lv2_timer_t>();
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue