mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
Lv2 lwcond "true" syscalls
This commit is contained in:
parent
3cf80b0831
commit
befc0f62b8
27 changed files with 212 additions and 71 deletions
|
@ -100,7 +100,7 @@ s32 sys_event_queue_destroy(u32 equeue_id, s32 mode)
|
|||
}
|
||||
|
||||
Emu.GetEventManager().UnregisterKey(queue->key);
|
||||
Emu.GetIdManager().RemoveID(equeue_id);
|
||||
Emu.GetIdManager().RemoveID<event_queue_t>(equeue_id);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
@ -274,7 +274,7 @@ s32 sys_event_port_destroy(u32 eport_id)
|
|||
return CELL_EISCONN;
|
||||
}
|
||||
|
||||
Emu.GetIdManager().RemoveID(eport_id);
|
||||
Emu.GetIdManager().RemoveID<event_port_t>(eport_id);
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue