summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/nfc.cpp
diff options
context:
space:
mode:
authorfearlessTobi <thm.frey@gmail.com>2019-03-28 23:01:52 +0100
committerfearlessTobi <thm.frey@gmail.com>2019-03-29 15:02:28 +0100
commitff7e6a42c1063a9783c1cf88a144577616c2ca86 (patch)
treec7b3c522750d203993bd3c92f77dcf7b1d6b8254 /src/core/hle/service/nfc/nfc.cpp
parentMerge pull request #2285 from lioncash/unused-struct (diff)
downloadyuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.tar
yuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.tar.gz
yuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.tar.bz2
yuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.tar.lz
yuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.tar.xz
yuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.tar.zst
yuzu-ff7e6a42c1063a9783c1cf88a144577616c2ca86.zip
Diffstat (limited to 'src/core/hle/service/nfc/nfc.cpp')
-rw-r--r--src/core/hle/service/nfc/nfc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nfc/nfc.cpp b/src/core/hle/service/nfc/nfc.cpp
index 5c62d42ba..ca88bf97f 100644
--- a/src/core/hle/service/nfc/nfc.cpp
+++ b/src/core/hle/service/nfc/nfc.cpp
@@ -150,7 +150,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.PushRaw<u8>(Settings::values.enable_nfc);
+ rb.PushRaw<u8>(true);
}
void GetStateOld(Kernel::HLERequestContext& ctx) {