Merge pull request #12360 from TryTwo/bugfix_wiimote_signal_spam

WiimoteDevice. Bugfix. Remove signal spam while starting a game.
This commit is contained in:
Mai
2023-12-08 21:07:51 -05:00
committed by GitHub

View File

@ -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;