HLE/FS: Corrected the error codes for DeleteFile

This commit is contained in:
Subv 2015-12-28 09:59:27 -05:00
parent 33fe4fe894
commit e248331abc
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;