HW/SI: GCAdapter calibration fix.

This commit is contained in:
Jordan Woyak 2019-03-29 06:15:58 -05:00
parent 9b6c9252e4
commit a015851b02
4 changed files with 14 additions and 0 deletions

View file

@ -382,6 +382,11 @@ bool DeviceConnected(int chan)
return s_controller_type[chan] != ControllerTypes::CONTROLLER_NONE;
}
void ResetDeviceType(int chan)
{
s_controller_type[chan] = ControllerTypes::CONTROLLER_NONE;
}
bool UseAdapter()
{
const auto& si_devices = SConfig::GetInstance().m_SIDevice;