early-access version 3772

This commit is contained in:
pineappleEA
2023-07-22 09:33:03 +02:00
parent 76d5acebd0
commit 469ff3fe83
33 changed files with 109 additions and 91 deletions

View File

@@ -890,6 +890,14 @@ const FileSys::ContentProvider& System::GetContentProvider() const {
return *impl->content_provider;
}
FileSys::ContentProviderUnion& System::GetContentProviderUnion() {
return *impl->content_provider;
}
const FileSys::ContentProviderUnion& System::GetContentProviderUnion() const {
return *impl->content_provider;
}
Service::FileSystem::FileSystemController& System::GetFileSystemController() {
return impl->fs_controller;
}