diff options
| author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-09-21 00:21:32 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-21 00:21:32 +0000 |
| commit | a2eb44db825a892cc2863bd1f5d0352c273ff0f0 (patch) | |
| tree | 3e75441609f97c8a6ad01e70461ecb218c51d086 /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | |
| parent | 754109fd54fccc844a41b8f42de1969b14c55721 (diff) | |
| parent | 7003090187e02c8625f4eb7a024ac97f9b0159aa (diff) | |
Merge pull request #4692 from ReinUsesLisp/remove-vsync
renderer_opengl: Remove emulated mailbox presentation
Diffstat (limited to 'src/yuzu_cmd/emu_window/emu_window_sdl2.cpp')
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp index a804d5185..521209622 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp @@ -13,9 +13,8 @@ #include "input_common/sdl/sdl.h" #include "yuzu_cmd/emu_window/emu_window_sdl2.h" -EmuWindow_SDL2::EmuWindow_SDL2(Core::System& system, bool fullscreen, - InputCommon::InputSubsystem* input_subsystem_) - : system{system}, input_subsystem{input_subsystem_} { +EmuWindow_SDL2::EmuWindow_SDL2(InputCommon::InputSubsystem* input_subsystem_) + : input_subsystem{input_subsystem_} { if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) { LOG_CRITICAL(Frontend, "Failed to initialize SDL2! Exiting..."); exit(1); |
