NFCC::StartCommunication: Fix response header

This commit is contained in:
wheremyfoodat 2023-08-21 15:13:00 +03:00
parent 5abfe5255f
commit fb4b3ca7ab

View file

@ -106,7 +106,7 @@ void NFCService::startCommunication(u32 messagePointer) {
log("NFC::StartCommunication\n");
// TODO: Actually start communication when we emulate amiibo
mem.write32(messagePointer, IPC::responseHeader(0x4, 1, 0));
mem.write32(messagePointer, IPC::responseHeader(0x3, 1, 0));
mem.write32(messagePointer + 4, Result::Success);
}