diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-03 00:31:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 00:31:32 -0400 |
commit | 00ba704a7fe55460e606075ce280e8933a80e973 (patch) | |
tree | 773d3cd59cffd5682f9625e354f68f734be77351 /src/yuzu_cmd/yuzu.cpp | |
parent | 4c3c608d59b8c8d8a9bbccc1b55efcab346e650f (diff) | |
parent | 0f2ac928f291101bd74aac661cff7d14dfa8c984 (diff) |
Merge pull request #892 from lioncash/global
video_core: Make global EmuWindow instance part of the base renderer …
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index b5392c499..5ff6266bf 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -162,7 +162,7 @@ int main(int argc, char** argv) { SCOPE_EXIT({ system.Shutdown(); }); - const Core::System::ResultStatus load_result{system.Load(emu_window.get(), filepath)}; + const Core::System::ResultStatus load_result{system.Load(*emu_window, filepath)}; switch (load_result) { case Core::System::ResultStatus::ErrorGetLoader: |