summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/disk_filesystem.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-03-21 15:36:26 +0100
committerSubv <subv2112@gmail.com>2018-03-21 15:55:59 +0100
commiteff3f60b73343365ad65638f55591965df6f7e25 (patch)
tree9b2d61666ff0f516b06d3a6cfda144afb5fb72e7 /src/core/file_sys/disk_filesystem.h
parentFS: Implemented IFileSystem's OpenDirectory function. (diff)
downloadyuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar
yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.gz
yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.bz2
yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.lz
yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.xz
yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.zst
yuzu-eff3f60b73343365ad65638f55591965df6f7e25.zip
Diffstat (limited to 'src/core/file_sys/disk_filesystem.h')
-rw-r--r--src/core/file_sys/disk_filesystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/disk_filesystem.h b/src/core/file_sys/disk_filesystem.h
index 72a0afedf..742d7db1a 100644
--- a/src/core/file_sys/disk_filesystem.h
+++ b/src/core/file_sys/disk_filesystem.h
@@ -30,7 +30,7 @@ public:
ResultCode DeleteDirectory(const Path& path) const override;
ResultCode DeleteDirectoryRecursively(const Path& path) const override;
ResultCode CreateFile(const std::string& path, u64 size) const override;
- ResultCode CreateDirectory(const Path& path) const override;
+ ResultCode CreateDirectory(const std::string& path) const override;
ResultCode RenameDirectory(const Path& src_path, const Path& dest_path) const override;
ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(
const std::string& path) const override;