From dc44c3328e2c1ef0b9d68e043a789b637d5dff88 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Mon, 13 May 2019 22:50:58 +0200 Subject: [PATCH] - always apply vid_maxfps even when vid_vsync is on. Some users may override the application in their driver control panel and this helps stabilize their fps if they did it this way --- src/v_framebuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v_framebuffer.cpp b/src/v_framebuffer.cpp index 602064ebf4..207f888d22 100644 --- a/src/v_framebuffer.cpp +++ b/src/v_framebuffer.cpp @@ -427,7 +427,7 @@ void DFrameBuffer::FPSLimit() using namespace std::chrono; using namespace std::this_thread; - if (vid_maxfps <= 0 || vid_vsync || cl_capfps) + if (vid_maxfps <= 0 || cl_capfps) return; uint64_t targetWakeTime = fpsLimitTime + 1'000'000 / vid_maxfps;