From 735cbbb34faad79b8a953126d29ac6fd91bc017c Mon Sep 17 00:00:00 2001 From: Giovanni Cascione Date: Fri, 29 Mar 2024 15:58:24 +0100 Subject: [PATCH] LIBRETRO: add treshold to remove AUDIO_STATUS_BUFFER_UNDERRUN bit --- backends/platform/libretro/src/libretro-core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/platform/libretro/src/libretro-core.cpp b/backends/platform/libretro/src/libretro-core.cpp index ce208f3bf2a..201ebc71ed4 100644 --- a/backends/platform/libretro/src/libretro-core.cpp +++ b/backends/platform/libretro/src/libretro-core.cpp @@ -195,7 +195,7 @@ static void retro_audio_buff_status_cb(bool active, unsigned occupancy, bool und if (occupancy < retro_audio_buff_underrun_threshold) audio_status |= AUDIO_STATUS_BUFFER_UNDERRUN; - else + else if (occupancy > (retro_audio_buff_underrun_threshold << 2)) audio_status &= ~AUDIO_STATUS_BUFFER_UNDERRUN; retro_audio_buff_occupancy = occupancy;