diff options
| author | 2018-08-03 11:51:48 -0400 | |
|---|---|---|
| committer | 2018-08-08 21:18:45 -0400 | |
| commit | 4b471f0554146463f3b82eed14ff3922a5584e9f (patch) | |
| tree | 677b35914dd914343700be24a1e4098db292615c /src/yuzu_cmd/yuzu.cpp | |
| parent | vfs: Add unreachable assert to file permissions converter (diff) | |
| download | yuzu-4b471f0554146463f3b82eed14ff3922a5584e9f.tar.gz yuzu-4b471f0554146463f3b82eed14ff3922a5584e9f.tar.xz yuzu-4b471f0554146463f3b82eed14ff3922a5584e9f.zip | |
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) { | |||
| 161 | } | 161 | } |
| 162 | 162 | ||
| 163 | Core::System& system{Core::System::GetInstance()}; | 163 | Core::System& system{Core::System::GetInstance()}; |
| 164 | system.SetFilesystem(std::make_shared<FileSys::RealVfsFilesystem>()); | ||
| 164 | 165 | ||
| 165 | SCOPE_EXIT({ system.Shutdown(); }); | 166 | SCOPE_EXIT({ system.Shutdown(); }); |
| 166 | 167 | ||