summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_filesystem.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-03-20 05:00:37 +0100
committerSubv <subv2112@gmail.com>2018-03-20 05:00:37 +0100
commit6d90d99d12c6a1e7ec27831d93052a30c0e689b5 (patch)
tree8ec3a73b6ca0d6a2e3cc88e2a108eeb68ba19327 /src/core/file_sys/romfs_filesystem.h
parentFS: Implement DiskFileSystem::GetEntryType for existing files/directories. (diff)
downloadyuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.gz
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.bz2
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.lz
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.xz
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.zst
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.zip
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.h')
-rw-r--r--src/core/file_sys/romfs_filesystem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_filesystem.h b/src/core/file_sys/romfs_filesystem.h
index be52f20ef..ee41c2d02 100644
--- a/src/core/file_sys/romfs_filesystem.h
+++ b/src/core/file_sys/romfs_filesystem.h
@@ -38,7 +38,8 @@ public:
ResultCode CreateFile(const std::string& path, u64 size) const override;
ResultCode CreateDirectory(const Path& path) const override;
ResultCode RenameDirectory(const Path& src_path, const Path& dest_path) const override;
- ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(const Path& path) const override;
+ ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(
+ const std::string& path) const override;
u64 GetFreeSpaceSize() const override;
ResultVal<EntryType> GetEntryType(const std::string& path) const override;