mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 04:39:59 +00:00
yuzu: fix the stuck in fullscreen mode bug
Co-Authored-By: Valentin Vanelslande <vvanelslandedev@gmail.com>
This commit is contained in:
parent
7a2f60df26
commit
8ba06aa4e1
1 changed files with 8 additions and 0 deletions
|
@ -1034,6 +1034,14 @@ void GMainWindow::BootGame(const QString& filename) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void GMainWindow::ShutdownGame() {
|
void GMainWindow::ShutdownGame() {
|
||||||
|
if (!emulation_running) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ui.action_Fullscreen->isChecked()) {
|
||||||
|
HideFullscreen();
|
||||||
|
}
|
||||||
|
|
||||||
AllowOSSleep();
|
AllowOSSleep();
|
||||||
|
|
||||||
discord_rpc->Pause();
|
discord_rpc->Pause();
|
||||||
|
|
Loading…
Reference in a new issue