mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-14 18:19:48 +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() {
|
void Kernel::svcReleaseMutex() {
|
||||||
const Handle handle = regs[0];
|
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);
|
const auto object = getObject(handle, KernelObjectType::Mutex);
|
||||||
if (object == nullptr) [[unlikely]] {
|
if (object == nullptr) [[unlikely]] {
|
||||||
|
|
Loading…
Add table
Reference in a new issue