fix'd
This commit is contained in:
parent
4758834894
commit
1d997b4ee2
1 changed files with 3 additions and 2 deletions
|
@ -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<UpdateDataHeader>(Context.Memory, InputPosition);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue