amadeus: Fix a typo in TapFrame logic (#1767)

This fix a crash at boot in Pang Adventures
pull/1770/head
Mary 2020-12-02 00:46:26 +01:00 committed by GitHub
parent cf6cd71488
commit bc11443621
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ namespace Ryujinx.Audio.Renderer.Server.Performance
public override void TapFrame(bool dspRunningBehind, uint voiceDropCount, ulong startRenderingTicks)
{
if (_availableFrameCount > 1)
if (_availableFrameCount > 0)
{
int targetIndexForHistory = _indexHistoryWrite;