This commit is contained in:
wheremyfoodat 2023-04-20 22:52:32 +03:00
parent 7f2715d06c
commit f575d4db82

View file

@ -352,7 +352,7 @@ void Kernel::svcCreateMutex() {
void Kernel::svcReleaseMutex() {
const Handle handle = regs[0];
logSVC("ReleaseMutex (handle = %x) (STUBBED)\n", handle);
logSVC("ReleaseMutex (handle = %x)\n", handle);
const auto object = getObject(handle, KernelObjectType::Mutex);
if (object == nullptr) [[unlikely]] {