VideoConfig: Eliminate bForceProgressive.

This commit is contained in:
Jordan Woyak
2025-03-10 19:01:57 -05:00
parent 5ed8b7bc9d
commit de01a790e1
3 changed files with 2 additions and 3 deletions

View File

@ -783,7 +783,8 @@ void VideoInterfaceManager::OutputField(FieldType field, u64 ticks)
// Multiply the stride by 2 to get the byte offset for each subsequent line.
fbStride *= 2;
if (potentially_interlaced_xfb && interlaced_video_mode && g_ActiveConfig.bForceProgressive)
if (potentially_interlaced_xfb && interlaced_video_mode &&
Config::Get(Config::GFX_HACK_FORCE_PROGRESSIVE))
{
// Strictly speaking, in interlaced mode, we're only supposed to read
// half of the lines of the XFB, and use that to display a field; the