summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
authorsan <sander.smid@gmail.com>2021-07-21 20:56:42 +0200
committerGitHub <noreply@github.com>2021-07-21 20:56:42 +0200
commit583a10fdedae0c1f2a787d8dffe98959afb725b5 (patch)
tree96380c8f056cede7434537d92717d204b141ca4c /src/yuzu_cmd/yuzu.cpp
parentMerge pull request #6660 from Morph1984/controller_applet_rev8 (diff)
downloadyuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.tar
yuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.tar.gz
yuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.tar.bz2
yuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.tar.lz
yuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.tar.xz
yuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.tar.zst
yuzu-583a10fdedae0c1f2a787d8dffe98959afb725b5.zip
Diffstat (limited to '')
-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 9607cdcb1..ac4ea88d3 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -175,7 +175,7 @@ int main(int argc, char** argv) {
emu_window = std::make_unique<EmuWindow_SDL2_GL>(&input_subsystem, fullscreen);
break;
case Settings::RendererBackend::Vulkan:
- emu_window = std::make_unique<EmuWindow_SDL2_VK>(&input_subsystem);
+ emu_window = std::make_unique<EmuWindow_SDL2_VK>(&input_subsystem, fullscreen);
break;
}