Skip to content

Commit

Permalink
Merge pull request #12360 from TryTwo/bugfix_wiimote_signal_spam
Browse files Browse the repository at this point in the history
WiimoteDevice. Bugfix. Remove signal spam while starting a game.
  • Loading branch information
lioncash committed Dec 9, 2023
2 parents 515bd10 + 6bd9488 commit 636b892
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/IOS/USB/Bluetooth/WiimoteDevice.cpp
Expand Up @@ -145,7 +145,8 @@ void WiimoteDevice::SetBasebandState(BasebandState new_state)
m_baseband_state = new_state;

// Update wiimote connection checkboxes in UI.
Host_UpdateDisasmDialog();
if (IsConnected() != was_connected)
Host_UpdateDisasmDialog();

if (!IsSourceValid())
return;
Expand Down

0 comments on commit 636b892

Please sign in to comment.