From 4f65043ad77dcc37d9195b2a5e976d102421b82a Mon Sep 17 00:00:00 2001 From: Ac_K Date: Mon, 28 Sep 2020 00:00:38 +0200 Subject: Basic impl of Error Applet (#1551) --- Ryujinx.HLE/HOS/Applets/AppletManager.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Ryujinx.HLE/HOS/Applets/AppletManager.cs') diff --git a/Ryujinx.HLE/HOS/Applets/AppletManager.cs b/Ryujinx.HLE/HOS/Applets/AppletManager.cs index 5d075882..a686a832 100644 --- a/Ryujinx.HLE/HOS/Applets/AppletManager.cs +++ b/Ryujinx.HLE/HOS/Applets/AppletManager.cs @@ -1,4 +1,5 @@ using Ryujinx.HLE.HOS.Applets.Browser; +using Ryujinx.HLE.HOS.Applets.Error; using Ryujinx.HLE.HOS.Services.Am.AppletAE; using System; using System.Collections.Generic; @@ -13,6 +14,7 @@ namespace Ryujinx.HLE.HOS.Applets { _appletMapping = new Dictionary { + { AppletId.Error, typeof(ErrorApplet) }, { AppletId.PlayerSelect, typeof(PlayerSelectApplet) }, { AppletId.Controller, typeof(ControllerApplet) }, { AppletId.SoftwareKeyboard, typeof(SoftwareKeyboardApplet) }, -- cgit v1.2.3