mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00:00
Fully remove wii remote netplay UI code and remove reference to WiimoteReal in NetPlayClient.cpp
This commit is contained in:
parent
8e1aff34df
commit
1b65adcd56
4 changed files with 6 additions and 41 deletions
|
@ -67,11 +67,6 @@ PadMappingArray PadMapDialog::GetModifiedPadMappings() const
|
|||
return m_pad_mapping;
|
||||
}
|
||||
|
||||
PadMappingArray PadMapDialog::GetModifiedWiimoteMappings() const
|
||||
{
|
||||
return m_wii_mapping;
|
||||
}
|
||||
|
||||
void PadMapDialog::OnAdjust(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
for (unsigned int i = 0; i < 4; i++)
|
||||
|
@ -81,11 +76,5 @@ void PadMapDialog::OnAdjust(wxCommandEvent& WXUNUSED(event))
|
|||
m_pad_mapping[i] = m_player_list[player_idx - 1]->pid;
|
||||
else
|
||||
m_pad_mapping[i] = -1;
|
||||
|
||||
player_idx = m_map_cbox[i + 4]->GetSelection();
|
||||
if (player_idx > 0)
|
||||
m_wii_mapping[i] = m_player_list[player_idx - 1]->pid;
|
||||
else
|
||||
m_wii_mapping[i] = -1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue