Skip to content

Commit

Permalink
VI: convert SI poll line count to half lines
Browse files Browse the repository at this point in the history
  • Loading branch information
booto committed Jul 6, 2019
1 parent 0a7395b commit d05eb78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/VideoInterface.cpp
Expand Up @@ -742,7 +742,7 @@ void Update(u64 ticks)
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 += SerialInterface::GetPollXLines();
s_half_line_of_next_si_poll += 2 * SerialInterface::GetPollXLines();
}
if (s_half_line_count == s_even_field_first_hl)
{
Expand Down

0 comments on commit d05eb78

Please sign in to comment.