fix: typos

This commit is contained in:
Andrea Pappacoda 2022-04-02 16:34:07 +02:00
parent 550844e5e8
commit 0c214cb5b9
No known key found for this signature in database
GPG key ID: A8A128A8AB1CEE49
5 changed files with 10 additions and 10 deletions

View file

@ -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