Przeglądaj źródła

Merge pull request #3576 from FearlessTobi/port-4906

Port citra-emu/citra#4906: "citra_qt: fix the stuck in fullscreen mode"
bunnei 6 lat temu
rodzic
commit
9bd9980372
1 zmienionych plików z 8 dodań i 0 usunięć
  1. 8 0
      src/yuzu/main.cpp

+ 8 - 0
src/yuzu/main.cpp

@@ -1034,6 +1034,14 @@ void GMainWindow::BootGame(const QString& filename) {
 }
 
 void GMainWindow::ShutdownGame() {
+    if (!emulation_running) {
+        return;
+    }
+
+    if (ui.action_Fullscreen->isChecked()) {
+        HideFullscreen();
+    }
+
     AllowOSSleep();
 
     discord_rpc->Pause();