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(); } }