diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-04-02 15:35:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-02 15:35:14 -0400 |
| commit | 1cb83c91a65168030362a1a78d26dd7f822a839a (patch) | |
| tree | bb1013e9543cc306d0425551eb0754b29b3694bb /src/core/hle/service/filesystem/filesystem.cpp | |
| parent | 550844e5e8e52edfb88bffefc4663d64b9b49b88 (diff) | |
| parent | 0c214cb5b9f209df5f0a00e4bde16f8d295b8301 (diff) | |
Merge pull request #8142 from Tachi107/typos
fix: typos
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.cpp')
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 2 |
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 |
