mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user