mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-14 22:50:34 +00:00
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 },
|
{ 22, SetTerminateResult },
|
||||||
{ 40, NotifyRunning },
|
{ 40, NotifyRunning },
|
||||||
{ 66, InitializeGameplayRecording },
|
{ 66, InitializeGameplayRecording },
|
||||||
|
{ 67, SetGameplayRecordingState },
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,6 +83,13 @@ namespace Ryujinx.Core.OsHle.Services.Am
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long SetGameplayRecordingState(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
//TODO: Stubbed
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
private byte[] MakeLaunchParams()
|
private byte[] MakeLaunchParams()
|
||||||
{
|
{
|
||||||
//Size needs to be at least 0x88 bytes otherwise application errors.
|
//Size needs to be at least 0x88 bytes otherwise application errors.
|
||||||
|
|
Loading…
Reference in a new issue