am: IApplicationFunctions GetGpuErrorDetectedSystemEvent implementation (#775)

This commit is contained in:
Ac_K 2019-09-20 06:42:32 +02:00 committed by jduncanator
parent f1f7d12bc4
commit eb76d0a121
3 changed files with 29 additions and 3 deletions

View file

@ -65,7 +65,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletOE.ApplicationProxyService
// GetApplicationFunctions() -> object<nn::am::service::IApplicationFunctions>
public ResultCode GetApplicationFunctions(ServiceCtx context)
{
MakeObject(context, new IApplicationFunctions());
MakeObject(context, new IApplicationFunctions(context.Device.System));
return ResultCode.Success;
}