summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-07-30 16:43:58 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2021-07-30 16:43:58 +0200
commit335de3fdf584de939adebb99c4b960b564a406d5 (patch)
treedf21d0f3663507aafb2d2e39ac0c1e22c819df5b /src/yuzu_cmd/yuzu.cpp
parentMerge pull request #6767 from ReinUsesLisp/fold-float-pack (diff)
downloadyuzu-335de3fdf584de939adebb99c4b960b564a406d5.tar
yuzu-335de3fdf584de939adebb99c4b960b564a406d5.tar.gz
yuzu-335de3fdf584de939adebb99c4b960b564a406d5.tar.bz2
yuzu-335de3fdf584de939adebb99c4b960b564a406d5.tar.lz
yuzu-335de3fdf584de939adebb99c4b960b564a406d5.tar.xz
yuzu-335de3fdf584de939adebb99c4b960b564a406d5.tar.zst
yuzu-335de3fdf584de939adebb99c4b960b564a406d5.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu_cmd/yuzu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 35ce23696..c10093820 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -172,10 +172,10 @@ int main(int argc, char** argv) {
std::unique_ptr<EmuWindow_SDL2> emu_window;
switch (Settings::values.renderer_backend.GetValue()) {
case Settings::RendererBackend::OpenGL:
- emu_window = std::make_unique<EmuWindow_SDL2_GL>(&input_subsystem, fullscreen);
+ emu_window = std::make_unique<EmuWindow_SDL2_GL>(&input_subsystem, system, fullscreen);
break;
case Settings::RendererBackend::Vulkan:
- emu_window = std::make_unique<EmuWindow_SDL2_VK>(&input_subsystem, fullscreen);
+ emu_window = std::make_unique<EmuWindow_SDL2_VK>(&input_subsystem, system, fullscreen);
break;
}