From eba305fd3de8b17fb7611cb6ab4462706feff6ed Mon Sep 17 00:00:00 2001 From: Melissa Goad Date: Thu, 19 Apr 2018 00:09:10 -0500 Subject: [PATCH] Stub SetGameplayRecordingState --- Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs b/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs index 2af7c4a72..d2e756997 100644 --- a/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs +++ b/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs @@ -20,6 +20,7 @@ namespace Ryujinx.Core.OsHle.Services.Am { 22, SetTerminateResult }, { 40, NotifyRunning }, { 66, InitializeGameplayRecording }, + { 67, SetGameplayRecordingState }, }; } @@ -82,6 +83,13 @@ namespace Ryujinx.Core.OsHle.Services.Am return 0; } + public long SetGameplayRecordingState(ServiceCtx Context) + { + //TODO: Stubbed + + return 0; + } + private byte[] MakeLaunchParams() { //Size needs to be at least 0x88 bytes otherwise application errors.