Fix GetAudioDeviceServiceWithRevisionInfo logging
`revisionInfo` and `appletResourceUserId` were read in the wrong order.
This commit is contained in:
parent
7c111a3567
commit
39b58018a2
1 changed files with 1 additions and 1 deletions
|
@ -137,8 +137,8 @@ namespace Ryujinx.HLE.HOS.Services.Audio
|
|||
// GetAudioDeviceServiceWithRevisionInfo(nn::applet::AppletResourceUserId, u32) -> object<nn::audio::detail::IAudioDevice>
|
||||
public ResultCode GetAudioDeviceServiceWithRevisionInfo(ServiceCtx context)
|
||||
{
|
||||
long appletResourceUserId = context.RequestData.ReadInt64();
|
||||
int revisionInfo = context.RequestData.ReadInt32();
|
||||
long appletResourceUserId = context.RequestData.ReadInt64();
|
||||
|
||||
Logger.PrintStub(LogClass.ServiceAudio, new { appletResourceUserId, revisionInfo });
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue