mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 02:29:59 -06:00
HW/SerialInterface: Refactor to class.
This commit is contained in:
@ -885,8 +885,9 @@ void VideoInterfaceManager::Update(u64 ticks)
|
||||
{
|
||||
Core::UpdateInputGate(!Config::Get(Config::MAIN_INPUT_BACKGROUND_INPUT),
|
||||
Config::Get(Config::MAIN_LOCK_CURSOR));
|
||||
SerialInterface::UpdateDevices();
|
||||
m_half_line_of_next_si_poll += 2 * SerialInterface::GetPollXLines();
|
||||
auto& si = m_system.GetSerialInterface();
|
||||
si.UpdateDevices();
|
||||
m_half_line_of_next_si_poll += 2 * si.GetPollXLines();
|
||||
}
|
||||
|
||||
// If this half-line is at the actual boundary of either field, schedule an SI poll to happen
|
||||
|
Reference in New Issue
Block a user