diff options
author | san <sander.smid@gmail.com> | 2021-07-21 20:56:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 20:56:42 +0200 |
commit | 583a10fdedae0c1f2a787d8dffe98959afb725b5 (patch) | |
tree | 96380c8f056cede7434537d92717d204b141ca4c /src/yuzu_cmd/yuzu.cpp | |
parent | Merge pull request #6660 from Morph1984/controller_applet_rev8 (diff) | |
download | yuzu-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 '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 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; } |