fix: home menu is no longer paused when launching apps

This commit is contained in:
Jacobwasbeast 2025-02-12 14:52:06 -06:00
parent 7e59519709
commit 125edb894b

View File

@ -621,7 +621,7 @@ namespace Ryujinx.HLE.HOS.Applets
public void PauseOldWindows(ulong pid) public void PauseOldWindows(ulong pid)
{ {
RealApplet applet = GetByAruId(pid); RealApplet applet = GetByAruId(pid);
if (applet?.CallerApplet != null) if (applet?.CallerApplet != null&&applet?.CallerApplet!=_homeMenu)
{ {
applet.CallerApplet.ProcessHandle.SetActivity(true); applet.CallerApplet.ProcessHandle.SetActivity(true);
} }