mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 14:45:41 +12:00
Fix derp
This commit is contained in:
parent
7f2715d06c
commit
f575d4db82
1 changed files with 1 additions and 1 deletions
|
@ -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]] {
|
||||
|
|
Loading…
Add table
Reference in a new issue