mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-09-04 08:35:47 +00:00
Fix derp
This commit is contained in:
parent
86a6d74218
commit
9f94a1420f
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ void APTService::appletUtility(u32 messagePointer) {
|
||||||
log("APT::AppletUtility(utility = %d, input size = %x, output size = %x, inputPointer = %08X) (Stubbed)\n", utility, inputSize,
|
log("APT::AppletUtility(utility = %d, input size = %x, output size = %x, inputPointer = %08X) (Stubbed)\n", utility, inputSize,
|
||||||
outputSize, inputPointer);
|
outputSize, inputPointer);
|
||||||
|
|
||||||
const u32 outputBuffer = messagePointer + 0x104;
|
const u32 outputBuffer = mem.read32(messagePointer + 0x104);
|
||||||
if (outputSize >= 1 && utility == 6) {
|
if (outputSize >= 1 && utility == 6) {
|
||||||
// TryLockTransition expects a bool indicating success in the output buffer. Set it to true to avoid games panicking (Thanks to Citra)
|
// TryLockTransition expects a bool indicating success in the output buffer. Set it to true to avoid games panicking (Thanks to Citra)
|
||||||
mem.write8(outputBuffer, true);
|
mem.write8(outputBuffer, true);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue