فهرست منبع

Merge pull request #3576 from FearlessTobi/port-4906

Port citra-emu/citra#4906: "citra_qt: fix the stuck in fullscreen mode"
bunnei 6 سال پیش
والد
کامیت
9bd9980372
1فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  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();