summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/romfs_filesystem.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-21 05:01:00 +0100
committerbunnei <bunneidev@gmail.com>2018-01-21 21:51:45 +0100
commit5035d18baaad5cee4cbc671710de472b9f25a920 (patch)
tree88be854c845cb826366acca96e07ccc62cc96695 /src/core/file_sys/romfs_filesystem.cpp
parentfsp_srv: Various improvements to IStorage:Read implementation. (diff)
downloadyuzu-5035d18baaad5cee4cbc671710de472b9f25a920.tar
yuzu-5035d18baaad5cee4cbc671710de472b9f25a920.tar.gz
yuzu-5035d18baaad5cee4cbc671710de472b9f25a920.tar.bz2
yuzu-5035d18baaad5cee4cbc671710de472b9f25a920.tar.lz
yuzu-5035d18baaad5cee4cbc671710de472b9f25a920.tar.xz
yuzu-5035d18baaad5cee4cbc671710de472b9f25a920.tar.zst
yuzu-5035d18baaad5cee4cbc671710de472b9f25a920.zip
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.cpp')
-rw-r--r--src/core/file_sys/romfs_filesystem.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_filesystem.cpp b/src/core/file_sys/romfs_filesystem.cpp
index 5b5c5a73e..ca1463d7c 100644
--- a/src/core/file_sys/romfs_filesystem.cpp
+++ b/src/core/file_sys/romfs_filesystem.cpp
@@ -69,7 +69,8 @@ ResultCode RomFS_FileSystem::RenameDirectory(const Path& src_path, const Path& d
return ResultCode(-1);
}
-ResultVal<std::unique_ptr<DirectoryBackend>> RomFS_FileSystem::OpenDirectory(const Path& path) const {
+ResultVal<std::unique_ptr<DirectoryBackend>> RomFS_FileSystem::OpenDirectory(
+ const Path& path) const {
return MakeResult<std::unique_ptr<DirectoryBackend>>(std::make_unique<ROMFSDirectory>());
}