Stubbed InitializeGameplayRecording. SMO needs this.

This commit is contained in:
Melissa Goad 2018-04-18 23:58:43 -05:00
parent b9b6e9d03f
commit ee04047e9c

View file

@ -18,7 +18,8 @@ namespace Ryujinx.Core.OsHle.Services.Am
{ 20, EnsureSaveData },
{ 21, GetDesiredLanguage },
{ 22, SetTerminateResult },
{ 40, NotifyRunning }
{ 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.