file_sys/bis_factory: Eliminate usage of the global system accessor
This commit is contained in:
parent
aa8d6fc041
commit
0e80567bef
5 changed files with 11 additions and 11 deletions
|
@ -629,11 +629,11 @@ Loader::AppLoader& System::GetAppLoader() const {
|
|||
return *impl->app_loader;
|
||||
}
|
||||
|
||||
void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) {
|
||||
void System::SetFilesystem(FileSys::VirtualFilesystem vfs) {
|
||||
impl->virtual_filesystem = std::move(vfs);
|
||||
}
|
||||
|
||||
std::shared_ptr<FileSys::VfsFilesystem> System::GetFilesystem() const {
|
||||
FileSys::VirtualFilesystem System::GetFilesystem() const {
|
||||
return impl->virtual_filesystem;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue