1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-23 12:36:34 -05:00

Merge pull request #3453 from FearlessTobi/remove-pause-lock

yuzu: Remove exit lock for game pausing
This commit is contained in:
bunnei
2020-03-26 16:42:57 -04:00
committed by GitHub

View File

@@ -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);