diff options
author | Subv <subv2112@gmail.com> | 2015-12-28 16:17:06 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-03-20 20:28:22 +0100 |
commit | 95b34f8081e26cfe75d63a853d1626fdd5b636e6 (patch) | |
tree | a25b91d70bf84ad71922f63f2f92e37320d2bbfa /src/core/file_sys/ivfc_archive.cpp | |
parent | HLE/FS: Fixed the OpenDirectory error code (diff) | |
download | yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.tar yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.tar.gz yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.tar.bz2 yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.tar.lz yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.tar.xz yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.tar.zst yuzu-95b34f8081e26cfe75d63a853d1626fdd5b636e6.zip |
Diffstat (limited to 'src/core/file_sys/ivfc_archive.cpp')
-rw-r--r-- | src/core/file_sys/ivfc_archive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/ivfc_archive.cpp b/src/core/file_sys/ivfc_archive.cpp index e7b37e09d..a8e9a72ef 100644 --- a/src/core/file_sys/ivfc_archive.cpp +++ b/src/core/file_sys/ivfc_archive.cpp @@ -20,8 +20,8 @@ std::string IVFCArchive::GetName() const { return "IVFC"; } -std::unique_ptr<FileBackend> IVFCArchive::OpenFile(const Path& path, const Mode mode) const { - return Common::make_unique<IVFCFile>(romfs_file, data_offset, data_size); +ResultVal<std::unique_ptr<FileBackend>> IVFCArchive::OpenFile(const Path& path, const Mode mode) const { + return MakeResult<std::unique_ptr<FileBackend>>(Common::make_unique<IVFCFile>(romfs_file, data_offset, data_size)); } ResultCode IVFCArchive::DeleteFile(const Path& path) const { |