summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/common/device.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-07-15 05:26:45 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-07-17 19:24:23 +0200
commit54f150b70a88397258219558896397aa4ed0b9c5 (patch)
treeff5162db490d8438d5e218845cd9e6296724f842 /src/core/hle/service/nfc/common/device.cpp
parentfile_sys/content_archive: Detect compressed NCAs (#11047) (diff)
downloadyuzu-54f150b70a88397258219558896397aa4ed0b9c5.tar
yuzu-54f150b70a88397258219558896397aa4ed0b9c5.tar.gz
yuzu-54f150b70a88397258219558896397aa4ed0b9c5.tar.bz2
yuzu-54f150b70a88397258219558896397aa4ed0b9c5.tar.lz
yuzu-54f150b70a88397258219558896397aa4ed0b9c5.tar.xz
yuzu-54f150b70a88397258219558896397aa4ed0b9c5.tar.zst
yuzu-54f150b70a88397258219558896397aa4ed0b9c5.zip
Diffstat (limited to '')
-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;
}