mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-11 00:25:41 +12:00
Fix NFC logs
This commit is contained in:
parent
710fc58505
commit
f52337f90c
1 changed files with 3 additions and 3 deletions
|
@ -101,7 +101,7 @@ void NFCService::getTagOutOfRangeEvent(u32 messagePointer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void NFCService::getTagState(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, IPC::responseHeader(0xD, 2, 0));
|
||||||
mem.write32(messagePointer + 4, Result::Success);
|
mem.write32(messagePointer + 4, Result::Success);
|
||||||
|
@ -109,7 +109,7 @@ void NFCService::getTagState(u32 messagePointer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void NFCService::communicationGetStatus(u32 messagePointer) {
|
void NFCService::communicationGetStatus(u32 messagePointer) {
|
||||||
log("NFC::CommunicationGetStatus");
|
log("NFC::CommunicationGetStatus\n");
|
||||||
|
|
||||||
if (!initialized) {
|
if (!initialized) {
|
||||||
Helpers::warn("NFC::CommunicationGetStatus: Old 3DS NFC Adapter not initialized\n");
|
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) {
|
void NFCService::communicationGetResult(u32 messagePointer) {
|
||||||
log("NFC::CommunicationGetResult");
|
log("NFC::CommunicationGetResult\n");
|
||||||
|
|
||||||
if (!initialized) {
|
if (!initialized) {
|
||||||
Helpers::warn("NFC::CommunicationGetResult: Old 3DS NFC Adapter not initialized\n");
|
Helpers::warn("NFC::CommunicationGetResult: Old 3DS NFC Adapter not initialized\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue