diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-13 17:25:13 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-13 17:36:35 +0200 |
commit | 0149162dba67e2019366a055f25de6a1080061d1 (patch) | |
tree | 21c54abe9ce8d0778bb787c9338d7bd195fb46e0 /src/yuzu_cmd | |
parent | Merge pull request #1409 from DarkLordZach/key-derivation (diff) | |
download | yuzu-0149162dba67e2019366a055f25de6a1080061d1.tar yuzu-0149162dba67e2019366a055f25de6a1080061d1.tar.gz yuzu-0149162dba67e2019366a055f25de6a1080061d1.tar.bz2 yuzu-0149162dba67e2019366a055f25de6a1080061d1.tar.lz yuzu-0149162dba67e2019366a055f25de6a1080061d1.tar.xz yuzu-0149162dba67e2019366a055f25de6a1080061d1.tar.zst yuzu-0149162dba67e2019366a055f25de6a1080061d1.zip |
Diffstat (limited to '')
-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 27aba95f6..c8b93b85b 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -175,7 +175,7 @@ int main(int argc, char** argv) { Core::System& system{Core::System::GetInstance()}; system.SetFilesystem(std::make_shared<FileSys::RealVfsFilesystem>()); - Service::FileSystem::CreateFactories(system.GetFilesystem()); + Service::FileSystem::CreateFactories(*system.GetFilesystem()); SCOPE_EXIT({ system.Shutdown(); }); |