GPU: Rename 'Force Progressive Scan' to 'Disable Interlacing'

It affects rendering as well as display/scanout now, after all.
This commit is contained in:
Connor McLaughlin
2020-04-11 16:37:51 +10:00
parent 9e024b7a51
commit 7779a54bc5
8 changed files with 16 additions and 19 deletions

View File

@ -1166,8 +1166,8 @@ void SDLHostInterface::DrawSettingsWindow()
settings_changed |= ImGui::Checkbox("True 24-bit Color (disables dithering)", &m_settings_copy.gpu_true_color);
settings_changed |= ImGui::Checkbox("Texture Filtering", &m_settings_copy.gpu_texture_filtering);
settings_changed |= ImGui::Checkbox("Disable Interlacing", &m_settings_copy.gpu_disable_interlacing);
settings_changed |= ImGui::Checkbox("Force NTSC Timings", &m_settings_copy.gpu_force_ntsc_timings);
settings_changed |= ImGui::Checkbox("Force Progressive Scan", &m_settings_copy.display_force_progressive_scan);
}
ImGui::EndTabItem();