mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 06:11:45 +00:00
amadeus: Fix possible device sink input out of bound (#3032)
This fix an out of bound when indexing inputs for games that uses unsupported values (8 here) Close #2724.
This commit is contained in:
parent
4910b214f5
commit
b2ebbe8b22
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ namespace Ryujinx.Audio.Renderer.Dsp.Command
|
|||
InputCount = sink.Parameter.InputCount;
|
||||
InputBufferIndices = new ushort[InputCount];
|
||||
|
||||
for (int i = 0; i < InputCount; i++)
|
||||
for (int i = 0; i < Math.Min(InputCount, Constants.ChannelCountMax); i++)
|
||||
{
|
||||
InputBufferIndices[i] = (ushort)(bufferOffset + sink.Parameter.Input[i]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue