HLE/FS: Corrected the error codes for DeleteFile

This commit is contained in:
Subv
2015-12-28 09:59:27 -05:00
parent b350f192bb
commit 09b0564c75
6 changed files with 22 additions and 12 deletions

View File

@ -35,7 +35,7 @@ public:
std::string GetName() const override;
std::unique_ptr<FileBackend> OpenFile(const Path& path, const Mode mode) const override;
bool DeleteFile(const Path& path) const override;
ResultCode DeleteFile(const Path& path) const override;
bool RenameFile(const Path& src_path, const Path& dest_path) const override;
bool DeleteDirectory(const Path& path) const override;
ResultCode CreateFile(const Path& path, u64 size) const override;