am: IApplicationFunctions GetGpuErrorDetectedSystemEvent implementation (#775)

This commit is contained in:
Ac_K
2019-09-20 06:42:32 +02:00
committed by jduncanator
parent f48df486e2
commit 92e5e3c505
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;
}