Browse Source
Merge pull request #3453 from FearlessTobi/remove-pause-lock
yuzu: Remove exit lock for game pausing
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
5 deletions
-
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); |
|
|
|
|