diff options
| author | bunnei <bunneidev@gmail.com> | 2020-03-26 16:42:57 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-26 16:42:57 -0400 | 
| commit | 950b6dbc800f3ab757433de0a989d2550e13d32b (patch) | |
| tree | d9a8f1e894d834cab7ebc31a9bb6851844e89d21 /src/yuzu | |
| parent | 3194f14aca8c92a0d8424c9cf79ac99d1108f241 (diff) | |
| parent | 7cbe6748c390391e54bde488152d67d961527d3c (diff) | |
Merge pull request #3453 from FearlessTobi/remove-pause-lock
yuzu: Remove exit lock for game pausing
Diffstat (limited to 'src/yuzu')
| -rw-r--r-- | src/yuzu/main.cpp | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 47615adfe..4769a612e 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1716,11 +1716,6 @@ void GMainWindow::OnStartGame() {  }  void GMainWindow::OnPauseGame() { -    Core::System& system{Core::System::GetInstance()}; -    if (system.GetExitLock() && !ConfirmForceLockedExit()) { -        return; -    } -      emu_thread->SetRunning(false);      ui.action_Start->setEnabled(true); | 
