From f52337f90c22d8fcd96ae5b0fa6c59bd10a36a4c Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:53:23 +0300 Subject: [PATCH] Fix NFC logs --- src/core/services/nfc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/services/nfc.cpp b/src/core/services/nfc.cpp index e0fe410b..4f71556c 100644 --- a/src/core/services/nfc.cpp +++ b/src/core/services/nfc.cpp @@ -101,7 +101,7 @@ void NFCService::getTagOutOfRangeEvent(u32 messagePointer) { } void NFCService::getTagState(u32 messagePointer) { - log("NFC::GetTagState"); + log("NFC::GetTagState\n"); mem.write32(messagePointer, IPC::responseHeader(0xD, 2, 0)); mem.write32(messagePointer + 4, Result::Success); @@ -109,7 +109,7 @@ void NFCService::getTagState(u32 messagePointer) { } void NFCService::communicationGetStatus(u32 messagePointer) { - log("NFC::CommunicationGetStatus"); + log("NFC::CommunicationGetStatus\n"); if (!initialized) { Helpers::warn("NFC::CommunicationGetStatus: Old 3DS NFC Adapter not initialized\n"); @@ -122,7 +122,7 @@ void NFCService::communicationGetStatus(u32 messagePointer) { void NFCService::communicationGetResult(u32 messagePointer) { - log("NFC::CommunicationGetResult"); + log("NFC::CommunicationGetResult\n"); if (!initialized) { Helpers::warn("NFC::CommunicationGetResult: Old 3DS NFC Adapter not initialized\n");