diff options
author | Subv <subv2112@gmail.com> | 2015-12-28 15:59:27 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-03-20 20:28:14 +0100 |
commit | 09b0564c75c3da41eaf15dcb847831c11f4c27b9 (patch) | |
tree | dce86c99034cd11bbba6b599389c72e827fedbaa /src/core/file_sys/ivfc_archive.h | |
parent | HLE/FS: Corrected the error codes for CreateFile (diff) | |
download | yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.tar yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.tar.gz yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.tar.bz2 yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.tar.lz yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.tar.xz yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.tar.zst yuzu-09b0564c75c3da41eaf15dcb847831c11f4c27b9.zip |
Diffstat (limited to 'src/core/file_sys/ivfc_archive.h')
-rw-r--r-- | src/core/file_sys/ivfc_archive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/ivfc_archive.h b/src/core/file_sys/ivfc_archive.h index 2a4e4def3..5d3a5b61e 100644 --- a/src/core/file_sys/ivfc_archive.h +++ b/src/core/file_sys/ivfc_archive.h @@ -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; |