mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Minor changes related to Emu.Stop()
This commit is contained in:
parent
d8e9382573
commit
9efedbe76a
3 changed files with 14 additions and 3 deletions
|
|
@ -1957,9 +1957,12 @@ void Emulator::Stop(bool restart)
|
|||
// Always Enable display sleep, not only if it was prevented.
|
||||
enable_display_sleep();
|
||||
|
||||
if (!m_force_boot && Quit(g_cfg.misc.autoexit.get()))
|
||||
if (!m_force_boot)
|
||||
{
|
||||
return;
|
||||
if (Quit(g_cfg.misc.autoexit.get()))
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
m_force_boot = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue