summaryrefslogtreecommitdiff
path: root/apps/playback.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playback.c')
-rw-r--r--apps/playback.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c
index f698bed024..865d0d724f 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -3687,6 +3687,12 @@ void audio_resume(void)
3687 audio_queue_send(Q_AUDIO_PAUSE, false); 3687 audio_queue_send(Q_AUDIO_PAUSE, false);
3688} 3688}
3689 3689
3690/* Internal function used by REPEAT_ONE */
3691bool audio_pending_track_skip_is_auto(void)
3692{
3693 return (skip_pending == TRACK_SKIP_AUTO);
3694}
3695
3690/* Skip the specified number of tracks forward or backward from the current */ 3696/* Skip the specified number of tracks forward or backward from the current */
3691void audio_skip(int offset) 3697void audio_skip(int offset)
3692{ 3698{