Skip to content
Permalink
Browse files
Merge pull request #7993 from Techjar/gc-adapter-calib-fix-fix
Core/NetPlayClient: Reset GCAdapter device type in UpdateDevices
  • Loading branch information
spycrab committed Apr 13, 2019
2 parents 635fd8c + 6d01f34 commit 6e9f9e3
Showing 1 changed file with 5 additions and 0 deletions.
@@ -1650,6 +1650,11 @@ void NetPlayClient::UpdateDevices()
if (SerialInterface::SIDevice_IsGCController(SConfig::GetInstance().m_SIDevice[local_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
{

0 comments on commit 6e9f9e3

Please sign in to comment.