From 91e7d5a3f9f521beb18c6d87cd23864d1d6bbb7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Mon, 9 Mar 2026 21:30:25 +0100 Subject: [PATCH] turned on vsync with sdl --- SakuraVNE/src/Application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SakuraVNE/src/Application.cpp b/SakuraVNE/src/Application.cpp index 1d51e2b..56d08eb 100644 --- a/SakuraVNE/src/Application.cpp +++ b/SakuraVNE/src/Application.cpp @@ -59,6 +59,8 @@ bool Application::Init() { LOG_INFO("SDL renderer created"); } + SDL_SetRenderVSync(m_Renderer, 1); + // Imgui init IMGUI_CHECKVERSION(); ImGui::CreateContext();