aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs')
-rw-r--r--Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs b/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
index 9e18b9ed..5704ef4b 100644
--- a/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
+++ b/Ryujinx.HLE/HOS/SystemState/AppletStateMgr.cs
@@ -14,12 +14,15 @@ namespace Ryujinx.HLE.HOS.SystemState
public IdDictionary AppletResourceUserIds { get; }
+ public IdDictionary IndirectLayerHandles { get; }
+
public AppletStateMgr(Horizon system)
{
Messages = new ConcurrentQueue<AppletMessage>();
MessageEvent = new KEvent(system.KernelContext);
AppletResourceUserIds = new IdDictionary();
+ IndirectLayerHandles = new IdDictionary();
}
public void SetFocus(bool isFocused)