summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar VolcaEM2020-06-27 13:09:36 +0200
committerGravatar GitHub2020-06-27 13:09:36 +0200
commit23515e0cccf4dd4ce71bbbfcb8620a5437b19fb3 (patch)
tree0a0a2e747fa90859a583aa5d5e990705e353e446 /src
parentMerge pull request #4097 from kevinxucs/kevinxucs/device-pixel-scaling-float (diff)
downloadyuzu-23515e0cccf4dd4ce71bbbfcb8620a5437b19fb3.tar.gz
yuzu-23515e0cccf4dd4ce71bbbfcb8620a5437b19fb3.tar.xz
yuzu-23515e0cccf4dd4ce71bbbfcb8620a5437b19fb3.zip
nfc: Update function table
This was based on Switchbrew page: https://switchbrew.org/wiki/NFC_services
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/nfc/nfc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/nfc/nfc.cpp b/src/core/hle/service/nfc/nfc.cpp
index b7b34ce7e..780ea30fe 100644
--- a/src/core/hle/service/nfc/nfc.cpp
+++ b/src/core/hle/service/nfc/nfc.cpp
@@ -198,9 +198,9 @@ public:
198 static const FunctionInfo functions[] = { 198 static const FunctionInfo functions[] = {
199 {0, nullptr, "Initialize"}, 199 {0, nullptr, "Initialize"},
200 {1, nullptr, "Finalize"}, 200 {1, nullptr, "Finalize"},
201 {2, nullptr, "GetState"}, 201 {2, nullptr, "GetStateOld"},
202 {3, nullptr, "IsNfcEnabled"}, 202 {3, nullptr, "IsNfcEnabledOld"},
203 {100, nullptr, "SetNfcEnabled"}, 203 {100, nullptr, "SetNfcEnabledOld"},
204 {400, nullptr, "InitializeSystem"}, 204 {400, nullptr, "InitializeSystem"},
205 {401, nullptr, "FinalizeSystem"}, 205 {401, nullptr, "FinalizeSystem"},
206 {402, nullptr, "GetState"}, 206 {402, nullptr, "GetState"},