summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-03 06:31:32 +0200
committerGitHub <noreply@github.com>2018-08-03 06:31:32 +0200
commit00ba704a7fe55460e606075ce280e8933a80e973 (patch)
tree773d3cd59cffd5682f9625e354f68f734be77351 /src/yuzu_cmd
parentMerge pull request #894 from lioncash/object (diff)
parentvideo_core: Make global EmuWindow instance part of the base renderer class (diff)
downloadyuzu-00ba704a7fe55460e606075ce280e8933a80e973.tar
yuzu-00ba704a7fe55460e606075ce280e8933a80e973.tar.gz
yuzu-00ba704a7fe55460e606075ce280e8933a80e973.tar.bz2
yuzu-00ba704a7fe55460e606075ce280e8933a80e973.tar.lz
yuzu-00ba704a7fe55460e606075ce280e8933a80e973.tar.xz
yuzu-00ba704a7fe55460e606075ce280e8933a80e973.tar.zst
yuzu-00ba704a7fe55460e606075ce280e8933a80e973.zip
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/yuzu.cpp2
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: