Stubbed InitializeGameplayRecording. SMO needs this.
This commit is contained in:
parent
b9b6e9d03f
commit
ee04047e9c
1 changed files with 13 additions and 5 deletions
|
@ -14,11 +14,12 @@ namespace Ryujinx.Core.OsHle.Services.Am
|
|||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
{ 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.
|
||||
|
|
Loading…
Reference in a new issue