early-access version 2846

This commit is contained in:
pineappleEA 2022-07-18 22:53:39 +02:00
parent 6b4c1f0f59
commit ba74a2373c
2 changed files with 2 additions and 1 deletions

View file

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 2845. This is the source code for early-access 2846.
## Legal Notice ## Legal Notice

View file

@ -1130,6 +1130,7 @@ void GMainWindow::OnAppFocusStateChanged(Qt::ApplicationState state) {
OnPauseGame(); OnPauseGame();
} else if (!emu_thread->IsRunning() && auto_paused && state == Qt::ApplicationActive) { } else if (!emu_thread->IsRunning() && auto_paused && state == Qt::ApplicationActive) {
auto_paused = false; auto_paused = false;
RequestGameResume();
OnStartGame(); OnStartGame();
} }
} }