summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-05-29 17:01:12 +0200
committerGitHub <noreply@github.com>2019-05-29 17:01:12 +0200
commit665b7e8e188f40208337d819e031b369f022836d (patch)
treecfd50bcbde06fdeedf511eca4b0e9f340b9d0f89 /src/yuzu_cmd/yuzu.cpp
parentMerge pull request #2519 from lioncash/sign (diff)
parentemu_window: Pass OnMinimalClientAreaChangeRequest argument by copy (diff)
downloadyuzu-665b7e8e188f40208337d819e031b369f022836d.tar
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.gz
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.bz2
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.lz
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.xz
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.zst
yuzu-665b7e8e188f40208337d819e031b369f022836d.zip
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r--src/yuzu_cmd/yuzu.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index d3734927b..5d9442646 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -31,6 +31,7 @@
#include "video_core/renderer_base.h"
#include "yuzu_cmd/config.h"
#include "yuzu_cmd/emu_window/emu_window_sdl2.h"
+#include "yuzu_cmd/emu_window/emu_window_sdl2_gl.h"
#include "core/file_sys/registered_cache.h"
@@ -173,7 +174,7 @@ int main(int argc, char** argv) {
Settings::values.use_gdbstub = use_gdbstub;
Settings::Apply();
- std::unique_ptr<EmuWindow_SDL2> emu_window{std::make_unique<EmuWindow_SDL2>(fullscreen)};
+ std::unique_ptr<EmuWindow_SDL2> emu_window{std::make_unique<EmuWindow_SDL2_GL>(fullscreen)};
if (!Settings::values.use_multi_core) {
// Single core mode must acquire OpenGL context for entire emulation session