Pad/Counters: Rearrange Pad/Core updates on VSync

Apparently this gets around some weird input lag issue.
This commit is contained in:
refractionpcsx2 2023-02-18 01:10:28 +00:00
parent c9078af45e
commit 6ccfa011d4
1 changed files with 1 additions and 1 deletions

View File

@ -602,9 +602,9 @@ static __fi void frameLimit()
static __fi void VSyncStart(u32 sCycle)
{
// Update vibration at the end of a frame.
VSyncUpdateCore();
PAD::Update();
VSyncUpdateCore();
frameLimit(); // limit FPS
gsPostVsyncStart(); // MUST be after framelimit; doing so before causes funk with frame times!
VSyncCheckExit();