diff options
author | bunnei <bunneidev@gmail.com> | 2014-11-18 04:26:54 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-11-18 04:26:54 +0100 |
commit | b66859714bda5968e36fed47a2ff8516bcfd2248 (patch) | |
tree | f1a933079afdfea73e76a187441733642489e2b0 /src/core/file_sys/archive_romfs.h | |
parent | Merge pull request #201 from archshift/boss (diff) | |
parent | Archive: Fixed to not destroy archive handle on close. (diff) | |
download | yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.tar yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.tar.gz yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.tar.bz2 yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.tar.lz yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.tar.xz yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.tar.zst yuzu-b66859714bda5968e36fed47a2ff8516bcfd2248.zip |
Diffstat (limited to 'src/core/file_sys/archive_romfs.h')
-rw-r--r-- | src/core/file_sys/archive_romfs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/file_sys/archive_romfs.h b/src/core/file_sys/archive_romfs.h index ae2344e82..8d5715734 100644 --- a/src/core/file_sys/archive_romfs.h +++ b/src/core/file_sys/archive_romfs.h @@ -34,21 +34,21 @@ public: * @param mode Mode to open the file with * @return Opened file, or nullptr */ - std::unique_ptr<File> OpenFile(const std::string& path, const Mode mode) const override; + std::unique_ptr<File> OpenFile(const Path& path, const Mode mode) const override; /** * Create a directory specified by its path * @param path Path relative to the archive * @return Whether the directory could be created */ - bool CreateDirectory(const std::string& path) const override; + bool CreateDirectory(const Path& path) const override; /** * Open a directory specified by its path * @param path Path relative to the archive * @return Opened directory, or nullptr */ - std::unique_ptr<Directory> OpenDirectory(const std::string& path) const override; + std::unique_ptr<Directory> OpenDirectory(const Path& path) const override; /** * Read data from the archive |