diff options
author | liamwhite <[email protected]> | 2024-02-23 20:32:32 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-23 20:32:32 -0500 |
commit | 6c40d75e47c7dc2d8ab5e11664cd40906f846de9 (patch) | |
tree | b3af659a01c967e1a3082447a9ada02e5b055717 /src/core/hle/service/nfc/nfc.cpp | |
parent | 975d6f1ec457f6c0e7bb6c667850099593b27e02 (diff) | |
parent | 0a0c257206b384fc9576d38d1904687a1a393f7f (diff) | |
download | yuzu-android-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.tar.gz yuzu-android-6c40d75e47c7dc2d8ab5e11664cd40906f846de9.zip |
Merge pull request #13140 from german77/yet-more-qlaunch
service: Stub multiple function for qlaunch
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"}, |