mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-16 22:26:40 +00:00
Fix bug causing an audio buffer to be enqueued more than once (#2940)
This commit is contained in:
parent
0205b1d7f6
commit
c0056546e7
@ -175,7 +175,7 @@ namespace Ryujinx.Audio.Common
|
|||||||
|
|
||||||
for (int i = 0; i < buffersToFlush.Length; i++)
|
for (int i = 0; i < buffersToFlush.Length; i++)
|
||||||
{
|
{
|
||||||
buffersToFlush[i] = _buffers[_hardwareBufferIndex];
|
buffersToFlush[i] = _buffers[hardwareBufferIndex];
|
||||||
|
|
||||||
_bufferAppendedCount--;
|
_bufferAppendedCount--;
|
||||||
_bufferRegisteredCount++;
|
_bufferRegisteredCount++;
|
||||||
|
Loading…
Reference in New Issue
Block a user