diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-08 21:54:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-08 21:54:12 -0400 |
| commit | b3e2c9f9f147f7dbb4b2ae0fdc91ddee70b4fdb4 (patch) | |
| tree | 8fbde57147f6a67c307381e60009d6f460c5a460 /src/core/hle/service/nfp/nfp_interface.cpp | |
| parent | 2a1acbfb4d0de3f5dadea014dc7a5c2a31366f27 (diff) | |
| parent | 107aa52cdbf9c6e7dc4a6e95da3ae18bc382778e (diff) | |
Merge pull request #10623 from german77/backup
service: nfc: Add backup support
Diffstat (limited to 'src/core/hle/service/nfp/nfp_interface.cpp')
| -rw-r--r-- | src/core/hle/service/nfp/nfp_interface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/nfp/nfp_interface.cpp b/src/core/hle/service/nfp/nfp_interface.cpp index 21d159154..34ef9d82d 100644 --- a/src/core/hle/service/nfp/nfp_interface.cpp +++ b/src/core/hle/service/nfp/nfp_interface.cpp @@ -126,7 +126,7 @@ void Interface::Flush(HLERequestContext& ctx) { void Interface::Restore(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto device_handle{rp.Pop<u64>()}; - LOG_WARNING(Service_NFP, "(STUBBED) called, device_handle={}", device_handle); + LOG_INFO(Service_NFP, "called, device_handle={}", device_handle); auto result = GetManager()->Restore(device_handle); result = TranslateResultToServiceError(result); @@ -394,7 +394,7 @@ void Interface::BreakTag(HLERequestContext& ctx) { void Interface::ReadBackupData(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto device_handle{rp.Pop<u64>()}; - LOG_WARNING(Service_NFP, "(STUBBED) called, device_handle={}", device_handle); + LOG_INFO(Service_NFP, "called, device_handle={}", device_handle); std::vector<u8> backup_data{}; auto result = GetManager()->ReadBackupData(device_handle, backup_data); @@ -412,7 +412,7 @@ void Interface::WriteBackupData(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto device_handle{rp.Pop<u64>()}; const auto backup_data_buffer{ctx.ReadBuffer()}; - LOG_WARNING(Service_NFP, "(STUBBED) called, device_handle={}", device_handle); + LOG_INFO(Service_NFP, "called, device_handle={}", device_handle); auto result = GetManager()->WriteBackupData(device_handle, backup_data_buffer); result = TranslateResultToServiceError(result); |
