diff options
| author | bunnei <bunneidev@gmail.com> | 2023-05-25 14:07:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-25 14:07:16 -0700 |
| commit | ffa1fba7d632d69e564cce302b5e5cf4bf131071 (patch) | |
| tree | a601ac622b62f4931202e13a7cf733b6f580390a /src/core/hle | |
| parent | a596c6e4388ed86af983364c961dcb52ab95e4d3 (diff) | |
| parent | fdb2002f77de6af19cc7f526b2e7540c329161c3 (diff) | |
Merge pull request #10396 from german77/amiibo_write
input_common: Implement amiibo writing
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/nfc/common/device.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/nfc/common/device.cpp b/src/core/hle/service/nfc/common/device.cpp index e5d4545a8..0bd7900e1 100644 --- a/src/core/hle/service/nfc/common/device.cpp +++ b/src/core/hle/service/nfc/common/device.cpp @@ -426,11 +426,11 @@ Result NfcDevice::Flush() { tag_data.write_counter++; - FlushWithBreak(NFP::BreakType::Normal); + const auto result = FlushWithBreak(NFP::BreakType::Normal); is_data_moddified = false; - return ResultSuccess; + return result; } Result NfcDevice::FlushDebug() { @@ -449,11 +449,11 @@ Result NfcDevice::FlushDebug() { tag_data.write_counter++; - FlushWithBreak(NFP::BreakType::Normal); + const auto result = FlushWithBreak(NFP::BreakType::Normal); is_data_moddified = false; - return ResultSuccess; + return result; } Result NfcDevice::FlushWithBreak(NFP::BreakType break_type) { |
