diff options
| author | 2018-08-09 19:22:06 -0400 | |
|---|---|---|
| committer | 2018-08-09 19:22:06 -0400 | |
| commit | 96ef22d3d0f7e75d1ad5d1351cd26db8c835f6ca (patch) | |
| tree | 4f18d020eb3de30a55053c3367cd0cc6049b31d6 /src/yuzu_cmd/yuzu.cpp | |
| parent | Merge pull request #991 from bunnei/ignore-mac (diff) | |
| parent | vfs: Fix documentation (diff) | |
| download | yuzu-96ef22d3d0f7e75d1ad5d1351cd26db8c835f6ca.tar.gz yuzu-96ef22d3d0f7e75d1ad5d1351cd26db8c835f6ca.tar.xz yuzu-96ef22d3d0f7e75d1ad5d1351cd26db8c835f6ca.zip | |
Merge pull request #897 from DarkLordZach/vfs-accuracy-2
vfs: Add VfsFilesystem and fix RealVfs* implementations
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 | ||