diff --git a/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs b/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs index ca4e368a6..f80162b24 100644 --- a/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs +++ b/Ryujinx.Core/OsHle/Services/Am/IApplicationFunctions.cs @@ -14,11 +14,12 @@ namespace Ryujinx.Core.OsHle.Services.Am { m_Commands = new Dictionary() { - { 1, PopLaunchParameter }, - { 20, EnsureSaveData }, - { 21, GetDesiredLanguage }, - { 22, SetTerminateResult }, - { 40, NotifyRunning } + { 1, PopLaunchParameter }, + { 20, EnsureSaveData }, + { 21, GetDesiredLanguage }, + { 22, SetTerminateResult }, + { 40, NotifyRunning }, + { 66, InitializeGameplayRecording }, }; } @@ -74,6 +75,13 @@ namespace Ryujinx.Core.OsHle.Services.Am return 0; } + public ulong InitializeGameplayRecording(ServiceCtx Context) + { + //TODO: Stubbed + + return 0; + } + private byte[] MakeLaunchParams() { //Size needs to be at least 0x88 bytes otherwise application errors.