summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/common/device.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-07-21 15:21:48 +0200
committerGitHub <noreply@github.com>2023-07-21 15:21:48 +0200
commitc0202da9ac8301f86086ea898e6789dae981b13f (patch)
tree0d9ecb6a93fcde52d5a56aa80ce686bb3e1ab9ad /src/core/hle/service/nfc/common/device.cpp
parentMerge pull request #11116 from lat9nq/clang-shadowing (diff)
parentservice: nfc: Update Implementation to match with latest RE (diff)
downloadyuzu-c0202da9ac8301f86086ea898e6789dae981b13f.tar
yuzu-c0202da9ac8301f86086ea898e6789dae981b13f.tar.gz
yuzu-c0202da9ac8301f86086ea898e6789dae981b13f.tar.bz2
yuzu-c0202da9ac8301f86086ea898e6789dae981b13f.tar.lz
yuzu-c0202da9ac8301f86086ea898e6789dae981b13f.tar.xz
yuzu-c0202da9ac8301f86086ea898e6789dae981b13f.tar.zst
yuzu-c0202da9ac8301f86086ea898e6789dae981b13f.zip
Diffstat (limited to 'src/core/hle/service/nfc/common/device.cpp')
-rw-r--r--src/core/hle/service/nfc/common/device.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/nfc/common/device.cpp b/src/core/hle/service/nfc/common/device.cpp
index 2d633b03f..49446bc42 100644
--- a/src/core/hle/service/nfc/common/device.cpp
+++ b/src/core/hle/service/nfc/common/device.cpp
@@ -34,8 +34,6 @@
#include "core/hle/service/nfc/mifare_result.h"
#include "core/hle/service/nfc/nfc_result.h"
#include "core/hle/service/time/time_manager.h"
-#include "core/hle/service/time/time_zone_content_manager.h"
-#include "core/hle/service/time/time_zone_types.h"
namespace Service::NFC {
NfcDevice::NfcDevice(Core::HID::NpadIdType npad_id_, Core::System& system_,
@@ -1486,6 +1484,7 @@ DeviceState NfcDevice::GetCurrentState() const {
}
Result NfcDevice::GetNpadId(Core::HID::NpadIdType& out_npad_id) const {
+ // TODO: This should get the npad id from nn::hid::system::GetXcdHandleForNpadWithNfc
out_npad_id = npad_id;
return ResultSuccess;
}