diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-24 02:32:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-24 02:32:32 +0100 |
commit | 6c40d75e47c7dc2d8ab5e11664cd40906f846de9 (patch) | |
tree | b3af659a01c967e1a3082447a9ada02e5b055717 /src/core/hle/service/nfc/nfc.cpp | |
parent | Merge pull request #13141 from liamwhite/swap (diff) | |
parent | service: audio: Add missing logging properties of SetHeadphoneOutputLevelMode (diff) | |
download | yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar.gz yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar.bz2 yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar.lz yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar.xz yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar.zst yuzu-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.zip |
Diffstat (limited to 'src/core/hle/service/nfc/nfc.cpp')
-rw-r--r-- | src/core/hle/service/nfc/nfc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nfc/nfc.cpp b/src/core/hle/service/nfc/nfc.cpp index 30ae989b9..9d4808dbe 100644 --- a/src/core/hle/service/nfc/nfc.cpp +++ b/src/core/hle/service/nfc/nfc.cpp @@ -57,7 +57,7 @@ public: {1, &NfcInterface::Finalize, "FinalizeOld"}, {2, &NfcInterface::GetState, "GetStateOld"}, {3, &NfcInterface::IsNfcEnabled, "IsNfcEnabledOld"}, - {100, nullptr, "SetNfcEnabledOld"}, + {100, &NfcInterface::SetNfcEnabled, "SetNfcEnabledOld"}, {400, &NfcInterface::Initialize, "Initialize"}, {401, &NfcInterface::Finalize, "Finalize"}, {402, &NfcInterface::GetState, "GetState"}, @@ -71,7 +71,7 @@ public: {410, &NfcInterface::GetTagInfo, "GetTagInfo"}, {411, &NfcInterface::AttachActivateEvent, "AttachActivateEvent"}, {412, &NfcInterface::AttachDeactivateEvent, "AttachDeactivateEvent"}, - {500, nullptr, "SetNfcEnabled"}, + {500, &NfcInterface::SetNfcEnabled, "SetNfcEnabled"}, {510, nullptr, "OutputTestWave"}, {1000, &NfcInterface::ReadMifare, "ReadMifare"}, {1001, &NfcInterface::WriteMifare, "WriteMifare"}, |