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:
|
case GS_VideoMode::DVD_PAL:
|
||||||
isCustom = (EmuConfig.GS.FrameratePAL != 50.0);
|
isCustom = (EmuConfig.GS.FrameratePAL != 50.0);
|
||||||
scanlines = SCANLINES_TOTAL_PAL;
|
scanlines = SCANLINES_TOTAL_PAL;
|
||||||
if (!gsIsInterlaced) scanlines += 3;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GS_VideoMode::NTSC:
|
case GS_VideoMode::NTSC:
|
||||||
case GS_VideoMode::DVD_NTSC:
|
case GS_VideoMode::DVD_NTSC:
|
||||||
isCustom = (EmuConfig.GS.FramerateNTSC != 59.94);
|
isCustom = (EmuConfig.GS.FramerateNTSC != 59.94);
|
||||||
scanlines = SCANLINES_TOTAL_NTSC;
|
scanlines = SCANLINES_TOTAL_NTSC;
|
||||||
if (!gsIsInterlaced) scanlines += 1;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case GS_VideoMode::SDTV_480P:
|
case GS_VideoMode::SDTV_480P:
|
||||||
|
|
Loading…
Reference in New Issue