overlays: Allow auto exit in home menu's exit game function

In case the game does not terminate itself properly.
This commit is contained in:
Megamouse 2025-05-07 23:08:25 +02:00
parent 738d1ef682
commit 73a6141f3f

View file

@ -138,7 +138,7 @@ namespace rsx
rsx_log.notice("User selected exit game in home menu");
Emu.CallFromMainThread([]
{
Emu.GracefulShutdown(false, true);
Emu.GracefulShutdown(true, true);
});
return page_navigation::stay;
});