mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-20 18:34:58 +00:00
added sceKernelDeleteEventFlag
This commit is contained in:
parent
b3f15dfe2e
commit
084b2ab6d5
1 changed files with 5 additions and 1 deletions
|
@ -61,7 +61,11 @@ int PS4_SYSV_ABI sceKernelCreateEventFlag(OrbisKernelEventFlag* ef, const char*
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
int PS4_SYSV_ABI sceKernelDeleteEventFlag(OrbisKernelEventFlag ef) {
|
int PS4_SYSV_ABI sceKernelDeleteEventFlag(OrbisKernelEventFlag ef) {
|
||||||
LOG_ERROR(Kernel_Event, "(STUBBED) called");
|
if (ef == nullptr) {
|
||||||
|
return ORBIS_KERNEL_ERROR_ESRCH;
|
||||||
|
}
|
||||||
|
|
||||||
|
delete ef;
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
int PS4_SYSV_ABI sceKernelOpenEventFlag() {
|
int PS4_SYSV_ABI sceKernelOpenEventFlag() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue