diff --git a/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs b/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs index 2af7c4a726..d2e7569970 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.