Merge pull request #106 from simonhxd/main

Properly Disable VSync
This commit is contained in:
NOTPIES 2026-03-08 21:22:37 -03:00 committed by GitHub
commit 810834ac7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -667,7 +667,7 @@ void Renderer::Present()
m_bShouldScreenGrabNextFrame = false;
}
m_pSwapChain->Present(1, 0);
m_pSwapChain->Present(0, 0);
++presentCount;
}