diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-09-19 15:09:03 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-09-19 15:09:11 +0200 |
commit | 9bba103791ba5740636ea94e7c1b87225a956c93 (patch) | |
tree | d52b1357c8673317a6d1e48f3424c9bf14b8437a | |
parent | Merge pull request #1273 from Subv/ld_sizes (diff) | |
download | yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.tar yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.tar.gz yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.tar.bz2 yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.tar.lz yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.tar.xz yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.tar.zst yuzu-9bba103791ba5740636ea94e7c1b87225a956c93.zip |
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index b1c364fbb..b2559b717 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -20,8 +20,10 @@ #include "common/string_util.h" #include "common/telemetry.h" #include "core/core.h" +#include "core/crypto/key_manager.h" #include "core/file_sys/vfs_real.h" #include "core/gdbstub/gdbstub.h" +#include "core/hle/service/filesystem/filesystem.h" #include "core/loader/loader.h" #include "core/settings.h" #include "core/telemetry_session.h" @@ -29,7 +31,6 @@ #include "yuzu_cmd/emu_window/emu_window_sdl2.h" #include <getopt.h> -#include "core/crypto/key_manager.h" #ifndef _MSC_VER #include <unistd.h> #endif @@ -169,6 +170,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()); SCOPE_EXIT({ system.Shutdown(); }); |