diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-07-21 09:21:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-21 09:21:48 -0400 |
| commit | c0202da9ac8301f86086ea898e6789dae981b13f (patch) | |
| tree | 0d9ecb6a93fcde52d5a56aa80ce686bb3e1ab9ad /src/core/hle/service/nfc/common/device.cpp | |
| parent | 014ca709c939512569abc7765b031b496c62a884 (diff) | |
| parent | 54f150b70a88397258219558896397aa4ed0b9c5 (diff) | |
Merge pull request #11096 from german77/amiibooo
service: nfc: Update Implementation to match with latest RE
Diffstat (limited to 'src/core/hle/service/nfc/common/device.cpp')
| -rw-r--r-- | src/core/hle/service/nfc/common/device.cpp | 3 |
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; } |
