mirror of https://github.com/PCSX2/pcsx2.git
Counters: Fix scanline count for double strike modes.
This commit is contained in:
parent
4dee68faaf
commit
9892624242
|
@ -351,14 +351,12 @@ u32 UpdateVSyncRate()
|
|||
case GS_VideoMode::DVD_PAL:
|
||||
isCustom = (EmuConfig.GS.FrameratePAL != 50.0);
|
||||
scanlines = SCANLINES_TOTAL_PAL;
|
||||
if (!gsIsInterlaced) scanlines += 3;
|
||||
break;
|
||||
|
||||
case GS_VideoMode::NTSC:
|
||||
case GS_VideoMode::DVD_NTSC:
|
||||
isCustom = (EmuConfig.GS.FramerateNTSC != 59.94);
|
||||
scanlines = SCANLINES_TOTAL_NTSC;
|
||||
if (!gsIsInterlaced) scanlines += 1;
|
||||
break;
|
||||
|
||||
case GS_VideoMode::SDTV_480P:
|
||||
|
|
Loading…
Reference in New Issue