summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/wps.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 3cda2fb44a..cef232c6fc 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -857,7 +857,7 @@ long gui_wps_show(void)
857 case ACTION_WPS_SEEKFWD: 857 case ACTION_WPS_SEEKFWD:
858 if (current_tick -last_right < HZ) 858 if (current_tick -last_right < HZ)
859 { 859 {
860 if (state->id3->cuesheet) 860 if (state->id3->cuesheet && playlist_check(1))
861 { 861 {
862 audio_next(); 862 audio_next();
863 } 863 }
@@ -875,10 +875,9 @@ long gui_wps_show(void)
875 case ACTION_WPS_SEEKBACK: 875 case ACTION_WPS_SEEKBACK:
876 if (current_tick - last_left < HZ) 876 if (current_tick - last_left < HZ)
877 { 877 {
878 if (state->id3->cuesheet) 878 if (state->id3->cuesheet && playlist_check(-1))
879 { 879 {
880 audio_pre_ff_rewind(); 880 audio_prev();
881 audio_ff_rewind(0);
882 } 881 }
883 else 882 else
884 { 883 {