fixed a case in sceKernelCreateEventFlag (found in Super Meat boy)

This commit is contained in:
georgemoralis 2024-05-30 20:16:16 +03:00
parent 3d749bc904
commit 3320156a27
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ int PS4_SYSV_ABI sceKernelCreateEventFlag(OrbisKernelEventFlag* ef, const char*
case 0x20:
thread_mode = EventFlagInternal::ThreadMode::Multi;
break;
case 0x00:
break;
default:
UNREACHABLE();
}