mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +00:00
Qt/ControllersWindow: Fix Wiimote settings not being re-enabled after quitting NetPlay
We no longer allow accessing controller config while NetPlay is running, so this check is no longer needed.
This commit is contained in:
parent
754d934a18
commit
a2545a18b2
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ void ControllersWindow::OnWiimoteRefreshPressed()
|
||||||
|
|
||||||
void ControllersWindow::OnEmulationStateChanged(bool running)
|
void ControllersWindow::OnEmulationStateChanged(bool running)
|
||||||
{
|
{
|
||||||
if (!SConfig::GetInstance().bWii || NetPlay::IsNetPlayRunning())
|
if (!SConfig::GetInstance().bWii)
|
||||||
{
|
{
|
||||||
m_wiimote_sync->setEnabled(!running);
|
m_wiimote_sync->setEnabled(!running);
|
||||||
m_wiimote_reset->setEnabled(!running);
|
m_wiimote_reset->setEnabled(!running);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue