Fix order of values

This commit is contained in:
gdkchan 2018-11-17 00:28:11 -03:00
commit f0c4b99fdb

View file

@ -82,8 +82,8 @@ namespace Ryujinx.HLE.HOS.Services.Aud
OutPosition += 2; OutPosition += 2;
} }
Context.ResponseData.Write(Samples);
Context.ResponseData.Write(Processed); Context.ResponseData.Write(Processed);
Context.ResponseData.Write(Samples);
return 0; return 0;
} }