summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/pcmbuf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c
index 7209dc1638..928f6035da 100644
--- a/apps/pcmbuf.c
+++ b/apps/pcmbuf.c
@@ -1283,7 +1283,9 @@ void pcmbuf_soft_mode(bool shhh)
1283 1283
1284bool pcmbuf_is_lowdata(void) 1284bool pcmbuf_is_lowdata(void)
1285{ 1285{
1286 if (!audio_pcmbuf_may_play() || pcmbuf_is_crossfade_active()) 1286 enum channel_status status = mixer_channel_status(PCM_MIXER_CHAN_PLAYBACK);
1287
1288 if (status != CHANNEL_PLAYING || pcmbuf_is_crossfade_active())
1287 return false; 1289 return false;
1288 1290
1289#if MEMORYSIZE > 2 1291#if MEMORYSIZE > 2