Stub SetGameplayRecordingState
This commit is contained in:
parent
1d08095c97
commit
eba305fd3d
1 changed files with 8 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue