From 1d997b4ee294b9cfbeac90741a90dd56c9aed8cb Mon Sep 17 00:00:00 2001 From: Starlet Date: Sat, 23 Jun 2018 00:51:58 -0400 Subject: [PATCH] fix'd --- Ryujinx.HLE/OsHle/Services/Aud/IAudioRenderer.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/OsHle/Services/Aud/IAudioRenderer.cs b/Ryujinx.HLE/OsHle/Services/Aud/IAudioRenderer.cs index 6bb1b3ca21..70601202a5 100644 --- a/Ryujinx.HLE/OsHle/Services/Aud/IAudioRenderer.cs +++ b/Ryujinx.HLE/OsHle/Services/Aud/IAudioRenderer.cs @@ -35,8 +35,9 @@ namespace Ryujinx.HLE.OsHle.Services.Aud public long RequestUpdateAudioRenderer(ServiceCtx Context) { - long OutputPosition = Context.Request.GetBufferType0x22().Position; - long InputPosition = Context.Request.GetBufferType0x21().Position; + long OutputPosition = Context.Request.ReceiveBuff[0].Position; + + long InputPosition = Context.Request.SendBuff[0].Position; UpdateDataHeader InputDataHeader = AMemoryHelper.Read(Context.Memory, InputPosition);