Skip to content

Commit

Permalink
Fix configuring balance board not working
Browse files Browse the repository at this point in the history
This is a bad fix since it doesn't resolve using the balance board on netplay.
  • Loading branch information
Pokechu22 committed Mar 12, 2023
1 parent 1f92848 commit 704f764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/Config/WiimoteControllersWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ void WiimoteControllersWidget::LoadSettings(Core::State state)
for (auto* pt_label : m_wiimote_pt_labels)
pt_label->setEnabled(enable_passthrough);

const int num_local_wiimotes = is_netplay ? NetPlay::NumLocalWiimotes() : 4;
const int num_local_wiimotes = is_netplay ? NetPlay::NumLocalWiimotes() : MAX_BBMOTES;
for (size_t i = 0; i < m_wiimote_groups.size(); i++)
{
m_wiimote_labels[i]->setEnabled(enable_emu_bt);
Expand Down

0 comments on commit 704f764

Please sign in to comment.