diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-08-23 14:20:37 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-08-23 17:02:55 -0400 |
| commit | 01d1b5cdaff6f05aa62794816547deab977256e5 (patch) | |
| tree | f4212fd69ff589b9a5957e5f4215b0b5c8771db0 /src/core/file_sys/patch_manager.cpp | |
| parent | 3ea3de4ecd9a03da23b9e823ecc454481a60c3b9 (diff) | |
file_sys: Replace inclusions with forward declarations where applicable
Same behavior, minus unnecessary inclusions where not necessary.
Diffstat (limited to 'src/core/file_sys/patch_manager.cpp')
| -rw-r--r-- | src/core/file_sys/patch_manager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index 729dbb5f4..c228d253e 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp @@ -49,8 +49,7 @@ std::string FormatTitleVersion(u32 version, TitleVersionFormat format) { return fmt::format("v{}.{}.{}", bytes[3], bytes[2], bytes[1]); } -std::shared_ptr<VfsDirectory> FindSubdirectoryCaseless(const std::shared_ptr<VfsDirectory> dir, - std::string_view name) { +VirtualDir FindSubdirectoryCaseless(const VirtualDir dir, std::string_view name) { #ifdef _WIN32 return dir->GetSubdirectory(name); #else |
