mem32_t replaced

This commit is contained in:
Nekotekina 2014-09-01 04:51:48 +04:00
parent 0b5ef1d8f9
commit 9501869aa1
65 changed files with 521 additions and 514 deletions

View file

@ -8,11 +8,11 @@
SysCallBase sys_timer("sys_timer");
s32 sys_timer_create(mem32_t timer_id)
s32 sys_timer_create(vm::ptr<be_t<u32>> timer_id)
{
sys_timer.Warning("sys_timer_create(timer_id_addr=0x%x)", timer_id.GetAddr());
sys_timer.Warning("sys_timer_create(timer_id_addr=0x%x)", timer_id.addr());
timer_id = sys_timer.GetNewId(new timer, TYPE_TIMER);
*timer_id = sys_timer.GetNewId(new timer, TYPE_TIMER);
return CELL_OK;
}