diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-16 11:40:26 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-16 11:40:26 -0400 | 
| commit | d26c76180d4c5b5324aa4fb53c86c1bf1a2d1436 (patch) | |
| tree | 4618c007fb20869c940b9e2d0333f72ef9e7fc6e /src/core/hle | |
| parent | 62d473305df295a3b8e955e6a2a05a1105ef893d (diff) | |
| parent | 0d4aa9125e3cf457b970fd33b05b5255d44a59d3 (diff) | |
Merge pull request #11517 from german77/amiibo-format
service: nfc: Fix amiibo formatting
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/nfc/common/device.cpp | 14 | 
1 files changed, 8 insertions, 6 deletions
| diff --git a/src/core/hle/service/nfc/common/device.cpp b/src/core/hle/service/nfc/common/device.cpp index 5dda12343..674d2e4b2 100644 --- a/src/core/hle/service/nfc/common/device.cpp +++ b/src/core/hle/service/nfc/common/device.cpp @@ -874,17 +874,19 @@ Result NfcDevice::RestoreAmiibo() {  }  Result NfcDevice::Format() { -    auto result1 = DeleteApplicationArea(); -    auto result2 = DeleteRegisterInfo(); +    Result result = ResultSuccess; -    if (result1.IsError()) { -        return result1; +    if (device_state == DeviceState::TagFound) { +        result = Mount(NFP::ModelType::Amiibo, NFP::MountTarget::All);      } -    if (result2.IsError()) { -        return result2; +    if (result.IsError()) { +        return result;      } +    DeleteApplicationArea(); +    DeleteRegisterInfo(); +      return Flush();  } | 
