summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/bootmanager.cpp1
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index 159b2c32b..4a60f450a 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -256,6 +256,7 @@ void GRenderWindow::InitRenderTarget() {
256 QGLFormat fmt; 256 QGLFormat fmt;
257 fmt.setVersion(3, 3); 257 fmt.setVersion(3, 3);
258 fmt.setProfile(QGLFormat::CoreProfile); 258 fmt.setProfile(QGLFormat::CoreProfile);
259 fmt.setSwapInterval(false);
259 260
260 // Requests a forward-compatible context, which is required to get a 3.2+ context on OS X 261 // Requests a forward-compatible context, which is required to get a 3.2+ context on OS X
261 fmt.setOption(QGL::NoDeprecatedFunctions); 262 fmt.setOption(QGL::NoDeprecatedFunctions);
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
index 351dd9225..e1f269d31 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -166,6 +166,7 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) {
166 OnResize(); 166 OnResize();
167 OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size); 167 OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
168 SDL_PumpEvents(); 168 SDL_PumpEvents();
169 SDL_GL_SetSwapInterval(false);
169 LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch, 170 LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch,
170 Common::g_scm_desc); 171 Common::g_scm_desc);
171 172