From fb4b3ca7ab1c8b00dfb371e06f6b1a1a143b5602 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Mon, 21 Aug 2023 15:13:00 +0300 Subject: [PATCH] NFCC::StartCommunication: Fix response header --- src/core/services/nfc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/services/nfc.cpp b/src/core/services/nfc.cpp index 65b7e425..b3346ce7 100644 --- a/src/core/services/nfc.cpp +++ b/src/core/services/nfc.cpp @@ -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); }