NetPlay: Remove 'reduce polling rate' option

With the SI poll line count fixed, pretty much all games are polling
twice per frame anyways, making this option superfluous. Since it's a
bit of a gross hack and makes DTMs incompatible with console, let's
just bin it.
This commit is contained in:
Techjar
2019-07-06 03:57:18 -04:00
parent 755601c64a
commit a3d8a8be06
13 changed files with 2 additions and 32 deletions

View File

@ -737,12 +737,7 @@ void Update(u64 ticks)
{
SerialInterface::UpdateDevices();
// If this setting is enabled, only poll twice per field instead of what the game wanted. It may
// be set during NetPlay or Movie playback.
if (Config::Get(Config::MAIN_REDUCE_POLLING_RATE))
s_half_line_of_next_si_poll += GetHalfLinesPerEvenField() / 2;
else
s_half_line_of_next_si_poll += 2 * SerialInterface::GetPollXLines();
s_half_line_of_next_si_poll += 2 * SerialInterface::GetPollXLines();
}
if (s_half_line_count == s_even_field_first_hl)
{