From ce26212138d53147e3e2e91f7b864d5deada344f Mon Sep 17 00:00:00 2001 From: Sebastian Leonhardt Date: Sun, 25 Oct 2015 20:58:36 +0100 Subject: AB repeat: fix bug that prevents to jump to beginning of track Change-Id: Ia323a2b16eaaf7d9afa888b71fd8b20fd9e2e62c --- apps/gui/wps.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'apps') diff --git a/apps/gui/wps.c b/apps/gui/wps.c index d1161ea71d..31e54639cc 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -915,13 +915,10 @@ long gui_wps_show(void) #ifdef AB_REPEAT_ENABLE /* if we're in A/B repeat mode and the current position is past the A marker, jump back to the A marker... */ - if ( ab_repeat_mode_enabled() ) + if ( ab_repeat_mode_enabled() && ab_after_A_marker(state->id3->elapsed) ) { - if ( ab_after_A_marker(state->id3->elapsed) ) - { - ab_jump_to_A_marker(); - break; - } + ab_jump_to_A_marker(); + break; } else /* ...otherwise, do it normally */ -- cgit v1.2.3