diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-12-18 15:06:37 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-12-24 02:49:48 +0100 |
commit | bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad (patch) | |
tree | 898d540f9e12b684d691e954c3653cccda3a8949 /src/core/file_sys/archive_romfs.h | |
parent | Merge pull request #328 from archshift/writeable (diff) | |
download | yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.tar yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.tar.gz yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.tar.bz2 yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.tar.lz yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.tar.xz yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.tar.zst yuzu-bbe0bf133252c75ce2485aebc6eb5a7c497fe5ad.zip |
Diffstat (limited to 'src/core/file_sys/archive_romfs.h')
-rw-r--r-- | src/core/file_sys/archive_romfs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/file_sys/archive_romfs.h b/src/core/file_sys/archive_romfs.h index 2fafd0d2a..5e918f92d 100644 --- a/src/core/file_sys/archive_romfs.h +++ b/src/core/file_sys/archive_romfs.h @@ -36,7 +36,7 @@ public: * @param path Path relative to the archive * @return Whether the file could be deleted */ - bool DeleteFile(const FileSys::Path& path) const override; + bool DeleteFile(const Path& path) const override; /** * Rename a File specified by its path @@ -44,14 +44,14 @@ public: * @param dest_path Destination path relative to the archive * @return Whether rename succeeded */ - bool RenameFile(const FileSys::Path& src_path, const FileSys::Path& dest_path) const override; + bool RenameFile(const Path& src_path, const Path& dest_path) const override; /** * Delete a directory specified by its path * @param path Path relative to the archive * @return Whether the directory could be deleted */ - bool DeleteDirectory(const FileSys::Path& path) const override; + bool DeleteDirectory(const Path& path) const override; /** * Create a file specified by its path @@ -74,7 +74,7 @@ public: * @param dest_path Destination path relative to the archive * @return Whether rename succeeded */ - bool RenameDirectory(const FileSys::Path& src_path, const FileSys::Path& dest_path) const override; + bool RenameDirectory(const Path& src_path, const Path& dest_path) const override; /** * Open a directory specified by its path |