diff options
author | Subv <subv2112@gmail.com> | 2018-03-20 05:00:37 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-03-20 05:00:37 +0100 |
commit | 6d90d99d12c6a1e7ec27831d93052a30c0e689b5 (patch) | |
tree | 8ec3a73b6ca0d6a2e3cc88e2a108eeb68ba19327 /src/core/file_sys/filesystem.h | |
parent | FS: Implement DiskFileSystem::GetEntryType for existing files/directories. (diff) | |
download | yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.gz yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.bz2 yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.lz yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.xz yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.tar.zst yuzu-6d90d99d12c6a1e7ec27831d93052a30c0e689b5.zip |
Diffstat (limited to 'src/core/file_sys/filesystem.h')
-rw-r--r-- | src/core/file_sys/filesystem.h | 3 |
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: * @param path Path relative to the archive * @return Opened directory, or error code */ - virtual ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(const Path& path) const = 0; + virtual ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory( + const std::string& path) const = 0; /** * Get the free space |