diff --git a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs
index 54d9dc426c..f0d3dd5cc4 100644
--- a/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs
+++ b/Ryujinx.Audio.Renderer/Server/Performance/PerformanceManagerGeneric.cs
@@ -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;