diff options
Diffstat (limited to 'apps/playback.c')
-rw-r--r-- | apps/playback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index c13befa533..db04f3a784 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -813,7 +813,7 @@ void audio_check_buffer(void) #endif /* Start buffer filling as necessary. */ - if (codecbufused > AUDIO_WATERMARK || !interrupt) + if (codecbufused > AUDIO_WATERMARK || interrupt || !playing) return ; filling = true; |