mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 16:49:27 +00:00
Merge pull request #7993 from Techjar/gc-adapter-calib-fix-fix
Core/NetPlayClient: Reset GCAdapter device type in UpdateDevices
This commit is contained in:
commit
6e9f9e34f1
1 changed files with 5 additions and 0 deletions
|
@ -1650,6 +1650,11 @@ void NetPlayClient::UpdateDevices()
|
||||||
if (SerialInterface::SIDevice_IsGCController(SConfig::GetInstance().m_SIDevice[local_pad]))
|
if (SerialInterface::SIDevice_IsGCController(SConfig::GetInstance().m_SIDevice[local_pad]))
|
||||||
{
|
{
|
||||||
SerialInterface::ChangeDevice(SConfig::GetInstance().m_SIDevice[local_pad], pad);
|
SerialInterface::ChangeDevice(SConfig::GetInstance().m_SIDevice[local_pad], pad);
|
||||||
|
|
||||||
|
if (SConfig::GetInstance().m_SIDevice[local_pad] == SerialInterface::SIDEVICE_WIIU_ADAPTER)
|
||||||
|
{
|
||||||
|
GCAdapter::ResetDeviceType(local_pad);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue