mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 02:30:00 +00:00
Qt: Shutdown emulation session only if EmuThread exists.
This commit is contained in:
parent
9d8e1f7a92
commit
c3bd797917
1 changed files with 3 additions and 1 deletions
|
@ -337,7 +337,9 @@ void GMainWindow::closeEvent(QCloseEvent* event)
|
|||
settings.setValue("firstStart", false);
|
||||
SaveHotkeys(settings);
|
||||
|
||||
ShutdownGame();
|
||||
// Shutdown session if the emu thread is active...
|
||||
if (emu_thread != nullptr)
|
||||
ShutdownGame();
|
||||
|
||||
render_window->close();
|
||||
|
||||
|
|
Loading…
Reference in a new issue