mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 20:56:39 +00:00
am: Stub SetMediaPlaybackStateForApplication (#2952)
This PR stub `SetMediaPlaybackStateForApplication` of the am service. Accordingly to gdkchan it's needed by the Youtube app. This is checked by RE aswell.
This commit is contained in:
parent
e96ef6d532
commit
512cce6ed3
1 changed files with 13 additions and 0 deletions
|
@ -330,6 +330,19 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletOE.ApplicationProxyService.Applicati
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[CommandHipc(60)] // 2.0.0+
|
||||||
|
// SetMediaPlaybackStateForApplication(bool enabled)
|
||||||
|
public ResultCode SetMediaPlaybackStateForApplication(ServiceCtx context)
|
||||||
|
{
|
||||||
|
bool enabled = context.RequestData.ReadBoolean();
|
||||||
|
|
||||||
|
// NOTE: Service stores the "enabled" value in a private field, when enabled is false, it stores nn::os::GetSystemTick() too.
|
||||||
|
|
||||||
|
Logger.Stub?.PrintStub(LogClass.ServiceAm, new { enabled });
|
||||||
|
|
||||||
|
return ResultCode.Success;
|
||||||
|
}
|
||||||
|
|
||||||
[CommandHipc(66)] // 3.0.0+
|
[CommandHipc(66)] // 3.0.0+
|
||||||
// InitializeGamePlayRecording(u64, handle<copy>)
|
// InitializeGamePlayRecording(u64, handle<copy>)
|
||||||
public ResultCode InitializeGamePlayRecording(ServiceCtx context)
|
public ResultCode InitializeGamePlayRecording(ServiceCtx context)
|
||||||
|
|
Loading…
Reference in a new issue