diff options
| author | Subv <subv2112@gmail.com> | 2018-03-19 23:00:37 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2018-03-19 23:00:37 -0500 |
| commit | 6d90d99d12c6a1e7ec27831d93052a30c0e689b5 (patch) | |
| tree | 8ec3a73b6ca0d6a2e3cc88e2a108eeb68ba19327 /src/core/file_sys/romfs_filesystem.cpp | |
| parent | e1d7b9fc2c8780552b40e8415104b4205efe2de7 (diff) | |
FS: Implement DiskFileSystem's OpenDirectory interface.
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.cpp')
| -rw-r--r-- | src/core/file_sys/romfs_filesystem.cpp | 3 |
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 f1f9b4d04..169f0d4f6 100644 --- a/src/core/file_sys/romfs_filesystem.cpp +++ b/src/core/file_sys/romfs_filesystem.cpp @@ -70,7 +70,8 @@ ResultCode RomFS_FileSystem::RenameDirectory(const Path& src_path, const Path& d } ResultVal<std::unique_ptr<DirectoryBackend>> RomFS_FileSystem::OpenDirectory( - const Path& path) const { + const std::string& path) const { + LOG_WARNING(Service_FS, "Opening Directory in a ROMFS archive"); return MakeResult<std::unique_ptr<DirectoryBackend>>(std::make_unique<ROMFSDirectory>()); } |
