summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/filesystem.cpp
diff options
context:
space:
mode:
authorAndrea Pappacoda <andrea@pappacoda.it>2022-04-02 16:34:07 +0200
committerAndrea Pappacoda <andrea@pappacoda.it>2022-04-02 16:34:07 +0200
commit0c214cb5b9f209df5f0a00e4bde16f8d295b8301 (patch)
treebb1013e9543cc306d0425551eb0754b29b3694bb /src/core/hle/service/filesystem/filesystem.cpp
parentMerge pull request #8128 from FernandoS27/gc-fixes (diff)
downloadyuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.gz
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.bz2
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.lz
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.xz
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.tar.zst
yuzu-0c214cb5b9f209df5f0a00e4bde16f8d295b8301.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp
index 3703ca4c6..4208337db 100644
--- a/src/core/hle/service/filesystem/filesystem.cpp
+++ b/src/core/hle/service/filesystem/filesystem.cpp
@@ -174,7 +174,7 @@ ResultCode VfsDirectoryServiceWrapper::RenameFile(const std::string& src_path_,
ASSERT_MSG(dest != nullptr, "Newly created file with success cannot be found.");
ASSERT_MSG(dest->WriteBytes(src->ReadAllBytes()) == src->GetSize(),
- "Could not write all of the bytes but everything else has succeded.");
+ "Could not write all of the bytes but everything else has succeeded.");
if (!src->GetContainingDirectory()->DeleteFile(Common::FS::GetFilename(src_path))) {
// TODO(DarkLordZach): Find a better error code for this