summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/common/device_manager.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-06-12 09:17:10 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-06-15 02:08:35 +0200
commitb1b13ddc6bdc8d9d67a53a33465f5cf84146a262 (patch)
tree20898261f367a1b78cbbfa3c13bff48427ffa107 /src/core/hle/service/nfc/common/device_manager.cpp
parentMerge pull request #10781 from 8bitDream/vcpkg (diff)
downloadyuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.tar
yuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.tar.gz
yuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.tar.bz2
yuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.tar.lz
yuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.tar.xz
yuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.tar.zst
yuzu-b1b13ddc6bdc8d9d67a53a33465f5cf84146a262.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nfc/common/device_manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nfc/common/device_manager.cpp b/src/core/hle/service/nfc/common/device_manager.cpp
index cffd602df..b0456508e 100644
--- a/src/core/hle/service/nfc/common/device_manager.cpp
+++ b/src/core/hle/service/nfc/common/device_manager.cpp
@@ -550,7 +550,7 @@ Result DeviceManager::ReadBackupData(u64 device_handle, std::span<u8> data) cons
}
if (result.IsSuccess()) {
- result = device->ReadBackupData(tag_info.uuid, data);
+ result = device->ReadBackupData(tag_info.uuid, tag_info.uuid_length, data);
result = VerifyDeviceResult(device, result);
}
@@ -569,7 +569,7 @@ Result DeviceManager::WriteBackupData(u64 device_handle, std::span<const u8> dat
}
if (result.IsSuccess()) {
- result = device->WriteBackupData(tag_info.uuid, data);
+ result = device->WriteBackupData(tag_info.uuid, tag_info.uuid_length, data);
result = VerifyDeviceResult(device, result);
}