summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfp/nfp.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-09-24 02:28:43 +0200
committerGitHub <noreply@github.com>2022-09-24 02:28:43 +0200
commitd794ced30328cf347f2dbacb9444bbe0a3b22a32 (patch)
treeab67b6d87f8c02f2d070a3bfb518c369e038d740 /src/core/hle/service/nfp/nfp.cpp
parentMerge pull request #8948 from german77/order (diff)
parentchore: fix some typos (diff)
downloadyuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.tar
yuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.tar.gz
yuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.tar.bz2
yuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.tar.lz
yuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.tar.xz
yuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.tar.zst
yuzu-d794ced30328cf347f2dbacb9444bbe0a3b22a32.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nfp/nfp.cpp4
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;
}