Skip to content

Commit

Permalink
Merge pull request #7065 from spycrab/qt_pause_exit
Browse files Browse the repository at this point in the history
Qt: Fix emulation still not being paused when confirming exit
  • Loading branch information
spycrab committed Jun 4, 2018
2 parents b26a47e + b13cf2e commit afc2c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt2/MainWindow.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit afc2c51

Please sign in to comment.