summaryrefslogtreecommitdiff
path: root/src/core/file_sys/filesystem.h
diff options
context:
space:
mode:
authorGravatar Subv2018-03-19 23:00:37 -0500
committerGravatar Subv2018-03-19 23:00:37 -0500
commit6d90d99d12c6a1e7ec27831d93052a30c0e689b5 (patch)
tree8ec3a73b6ca0d6a2e3cc88e2a108eeb68ba19327 /src/core/file_sys/filesystem.h
parentFS: Implement DiskFileSystem::GetEntryType for existing files/directories. (diff)
downloadyuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.gz
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.xz
yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.zip
FS: Implement DiskFileSystem's OpenDirectory interface.
Diffstat (limited to 'src/core/file_sys/filesystem.h')
-rw-r--r--src/core/file_sys/filesystem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h
index 5c91a46c2..22ad24143 100644
--- a/src/core/file_sys/filesystem.h
+++ b/src/core/file_sys/filesystem.h
@@ -150,7 +150,8 @@ public:
150 * @param path Path relative to the archive 150 * @param path Path relative to the archive
151 * @return Opened directory, or error code 151 * @return Opened directory, or error code
152 */ 152 */
153 virtual ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(const Path& path) const = 0; 153 virtual ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(
154 const std::string& path) const = 0;
154 155
155 /** 156 /**
156 * Get the free space 157 * Get the free space