GS: Fix h/vsync counters on mode change/sync.

This commit is contained in:
refractionpcsx2 2023-01-31 10:19:49 +00:00
parent 4b49c8bd6e
commit 08bae3da2e
1 changed files with 3 additions and 1 deletions

View File

@ -461,7 +461,9 @@ u32 UpdateVSyncRate()
hsyncCounter.CycleT = vSyncInfo.hRender; // Amount of cycles before the counter will be updated
vsyncCounter.CycleT = vSyncInfo.Render; // Amount of cycles before the counter will be updated
hsyncCounter.sCycle = cpuRegs.cycle;
vsyncCounter.sCycle = cpuRegs.cycle;
vsyncCounter.Mode = MODE_VRENDER;
cpuRcntSet();
}