diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-03 11:51:48 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-08 21:18:45 -0400 |
commit | 4b471f0554146463f3b82eed14ff3922a5584e9f (patch) | |
tree | 677b35914dd914343700be24a1e4098db292615c /src/yuzu_cmd/yuzu.cpp | |
parent | aaa8fdea527d635e6503a1411a06938325cba216 (diff) |
core: Port core to VfsFilesystem for file access
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index d637dbd0c..0605c92e3 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -161,6 +161,7 @@ int main(int argc, char** argv) { } Core::System& system{Core::System::GetInstance()}; + system.SetFilesystem(std::make_shared<FileSys::RealVfsFilesystem>()); SCOPE_EXIT({ system.Shutdown(); }); |