diff options
author | Andrea Pappacoda <andrea@pappacoda.it> | 2022-09-23 13:38:23 +0200 |
---|---|---|
committer | Andrea Pappacoda <andrea@pappacoda.it> | 2022-09-23 13:38:23 +0200 |
commit | 4a493cb10f123f5cf2911cfcb1c30b411b21d092 (patch) | |
tree | 3136bd180d0dbacd52c020eedea83c9a267c1dba /src/core/hle/service/nfp | |
parent | Merge pull request #8849 from Morph1984/parallel-astc (diff) | |
download | yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.tar yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.tar.gz yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.tar.bz2 yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.tar.lz yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.tar.xz yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.tar.zst yuzu-4a493cb10f123f5cf2911cfcb1c30b411b21d092.zip |
Diffstat (limited to 'src/core/hle/service/nfp')
-rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index e0ed3f771..037b86653 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp @@ -800,12 +800,12 @@ Result Module::Interface::Flush() { // Return to the start of the file if (!amiibo_file.Seek(0)) { - LOG_ERROR(Service_NFP, "Error writting to file"); + LOG_ERROR(Service_NFP, "Error writing to file"); return ErrCodes::WriteAmiiboFailed; } if (!amiibo_file.Write(encrypted_tag_data)) { - LOG_ERROR(Service_NFP, "Error writting to file"); + LOG_ERROR(Service_NFP, "Error writing to file"); return ErrCodes::WriteAmiiboFailed; } |