diff options
author | FearlessTobi <[email protected]> | 2023-09-10 02:36:26 +0200 |
---|---|---|
committer | Liam <[email protected]> | 2023-09-10 15:39:25 -0400 |
commit | 87c0ba129ce38dd3b001fbef8021590a127fb1a8 (patch) | |
tree | 28fa19ccd43fceeec31e433d32dae41e88d2b17e /src/yuzu_cmd | |
parent | 36917d8a8f364857f2a54d22b8dfa39c54534f13 (diff) | |
download | yuzu-mainline-87c0ba129ce38dd3b001fbef8021590a127fb1a8.tar.gz yuzu-mainline-87c0ba129ce38dd3b001fbef8021590a127fb1a8.zip |
am: Implement UserChannel parameters
Used by the Super Mairo 3D All-Stars collection.
Diffstat (limited to 'src/yuzu_cmd')
-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 c1695cc6e..55d0938f7 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -358,6 +358,7 @@ int main(int argc, char** argv) { system.SetContentProvider(std::make_unique<FileSys::ContentProviderUnion>()); system.SetFilesystem(std::make_shared<FileSys::RealVfsFilesystem>()); system.GetFileSystemController().CreateFactories(*system.GetFilesystem()); + system.GetUserChannel().clear(); const Core::SystemResultStatus load_result{system.Load(*emu_window, filepath)}; |