diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-04-22 17:56:56 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-21 16:43:10 -0400 |
commit | c6ff4a6f4d05eb380616be57e4088003e7aedfcb (patch) | |
tree | a923240a1505dd0ebbf476f43fe7e653a07e3217 /src/yuzu_cmd/yuzu.cpp | |
parent | faf628ad8deb3ed8926b6468d291ac4deda22676 (diff) |
yuzu: Port old usages of Filesystem namespace to FilesystemController
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 129d8ca73..bac05b959 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -184,7 +184,7 @@ int main(int argc, char** argv) { Core::System& system{Core::System::GetInstance()}; system.SetContentProvider(std::make_unique<FileSys::ContentProviderUnion>()); system.SetFilesystem(std::make_shared<FileSys::RealVfsFilesystem>()); - Service::FileSystem::CreateFactories(*system.GetFilesystem()); + system.GetFileSystemController().CreateFactories(*system.GetFilesystem()); SCOPE_EXIT({ system.Shutdown(); }); |