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

@ -485,6 +485,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;

View File

@ -29,6 +29,7 @@ void Output(int chan, u8 rumble_command);
bool IsDetected();
bool IsDriverDetected();
bool DeviceConnected(int chan);
void ResetDeviceType(int chan);
bool UseAdapter();
} // end of namespace GCAdapter

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;