mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-12-28 11:33:06 +00:00
Stubbed InitializeGameplayRecording. SMO needs this.
This commit is contained in:
parent
b9b6e9d03f
commit
ee04047e9c
1 changed files with 13 additions and 5 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue