summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_filesystem.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-24 14:57:46 +0200
committerGitHub <noreply@github.com>2018-04-24 14:57:46 +0200
commit74951426886a9ae47873a1ea2af791ba273e06dd (patch)
tree99ba0561c6fe429169a40e76a70db7b3f99a71ee /src/core/file_sys/romfs_filesystem.h
parentMerge pull request #379 from Subv/multi_buffers (diff)
parentService/FS: implement IFileSystem::RenameFile (diff)
downloadyuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar
yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.gz
yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.bz2
yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.lz
yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.xz
yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.zst
yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.zip
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.h')
-rw-r--r--src/core/file_sys/romfs_filesystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_filesystem.h b/src/core/file_sys/romfs_filesystem.h
index 1b5cac409..ba9d85823 100644
--- a/src/core/file_sys/romfs_filesystem.h
+++ b/src/core/file_sys/romfs_filesystem.h
@@ -32,7 +32,7 @@ public:
ResultVal<std::unique_ptr<StorageBackend>> OpenFile(const std::string& path,
Mode mode) const override;
ResultCode DeleteFile(const std::string& path) const override;
- ResultCode RenameFile(const Path& src_path, const Path& dest_path) const override;
+ ResultCode RenameFile(const std::string& src_path, const std::string& dest_path) const override;
ResultCode DeleteDirectory(const Path& path) const override;
ResultCode DeleteDirectoryRecursively(const Path& path) const override;
ResultCode CreateFile(const std::string& path, u64 size) const override;