summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-01-12 06:41:32 +0100
committerJames Rowe <jroweboy@gmail.com>2018-01-13 03:11:05 +0100
commit70e65ee63a08c4f0716872a45faffade0e18e369 (patch)
tree78f1ec5e39992cf581ca328027b7c8c8259e1bb9 /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
parentRemoving unused settings and yuzu rebranding (diff)
downloadyuzu-70e65ee63a08c4f0716872a45faffade0e18e369.tar
yuzu-70e65ee63a08c4f0716872a45faffade0e18e369.tar.gz
yuzu-70e65ee63a08c4f0716872a45faffade0e18e369.tar.bz2
yuzu-70e65ee63a08c4f0716872a45faffade0e18e369.tar.lz
yuzu-70e65ee63a08c4f0716872a45faffade0e18e369.tar.xz
yuzu-70e65ee63a08c4f0716872a45faffade0e18e369.tar.zst
yuzu-70e65ee63a08c4f0716872a45faffade0e18e369.zip
Diffstat (limited to 'src/yuzu_cmd/emu_window/emu_window_sdl2.cpp')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
index 7cbffba52..3d7cd06a4 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -17,7 +17,6 @@
#include "input_common/motion_emu.h"
#include "yuzu_cmd/emu_window/emu_window_sdl2.h"
-
void EmuWindow_SDL2::OnMouseMotion(s32 x, s32 y) {
TouchMoved((unsigned)std::max(x, 0), (unsigned)std::max(y, 0));
InputCommon::GetMotionEmu()->Tilt(x, y);
@@ -106,7 +105,6 @@ EmuWindow_SDL2::EmuWindow_SDL2() {
OnResize();
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
SDL_PumpEvents();
- SDL_GL_SetSwapInterval(Settings::values.use_vsync);
DoneCurrent();
}