mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Make input display work properly with netplay.
This commit is contained in:
@ -117,7 +117,7 @@ std::string GetInputDisplay()
|
||||
s_numPads = 0;
|
||||
for (int i = 0; i < 4; ++i)
|
||||
{
|
||||
if (SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_CONTROLLER || SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_TARUKONGA)
|
||||
if (SerialInterface::GetDeviceType(i) != SIDEVICE_NONE)
|
||||
s_numPads |= (1 << i);
|
||||
if (g_wiimote_sources[i] != WIIMOTE_SRC_NONE)
|
||||
s_numPads |= (1 << (i + 4));
|
||||
|
Reference in New Issue
Block a user