Do not increment played wave buffers count for empty wave buffers (#568)
* Do not increment played wave buffers count for empty wave buffers * Remove unused setter
This commit is contained in:
parent
d306115750
commit
8eebbc736e
2 changed files with 18 additions and 14 deletions
|
@ -312,7 +312,7 @@ namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
|||
|
||||
foreach (VoiceContext voice in _voices)
|
||||
{
|
||||
if (!voice.Playing)
|
||||
if (!voice.Playing || voice.CurrentWaveBuffer.Size == 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue