summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/playback.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 7c5ebe6b0e..0828d58ce0 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -1487,9 +1487,12 @@ void audio_next(void)
1487 ci.stop_codec = true; 1487 ci.stop_codec = true;
1488 playlist_next(1); 1488 playlist_next(1);
1489 queue_post(&audio_queue, AUDIO_PLAY, 0); 1489 queue_post(&audio_queue, AUDIO_PLAY, 0);
1490 } else if (!pcm_crossfade_start()) { 1490 }
1491#ifndef SIMULATOR
1492 else if (!pcm_crossfade_start()) {
1491 pcm_play_stop(); 1493 pcm_play_stop();
1492 } 1494 }
1495#endif
1493} 1496}
1494 1497
1495void audio_prev(void) 1498void audio_prev(void)