diff options
-rw-r--r-- | apps/playback.c | 5 |
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) ci.stop_codec = true; playlist_next(1); queue_post(&audio_queue, AUDIO_PLAY, 0); - } else if (!pcm_crossfade_start()) { + } +#ifndef SIMULATOR + else if (!pcm_crossfade_start()) { pcm_play_stop(); } +#endif } void audio_prev(void) |