From ba74a2373cce9a55273c1574880d23d26761690c Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Mon, 18 Jul 2022 22:53:39 +0200 Subject: [PATCH] early-access version 2846 --- README.md | 2 +- src/yuzu/main.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d0a72c6d..e6f85b2dc 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2845. +This is the source code for early-access 2846. ## Legal Notice diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 8da1d44ad..663306ebe 100755 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1130,6 +1130,7 @@ void GMainWindow::OnAppFocusStateChanged(Qt::ApplicationState state) { OnPauseGame(); } else if (!emu_thread->IsRunning() && auto_paused && state == Qt::ApplicationActive) { auto_paused = false; + RequestGameResume(); OnStartGame(); } }