diff --git a/Source/Core/DolphinQt2/MainWindow.cpp b/Source/Core/DolphinQt2/MainWindow.cpp index e133403f3f..4bc18c16fd 100644 --- a/Source/Core/DolphinQt2/MainWindow.cpp +++ b/Source/Core/DolphinQt2/MainWindow.cpp @@ -637,7 +637,7 @@ bool MainWindow::RequestStop() const Core::State state = Core::GetState(); // Only pause the game, if NetPlay is not running - bool pause = !m_netplay_dialog->isVisible(); + bool pause = Settings::Instance().GetNetPlayClient() == nullptr; if (pause) Core::SetState(Core::State::Paused);