summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 0b77386de0..3336645520 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -636,9 +636,9 @@ bool playlist_viewer_ex(char* filename)
636 { 636 {
637 /* Play has stopped */ 637 /* Play has stopped */
638#ifdef HAVE_LCD_CHARCELLS 638#ifdef HAVE_LCD_CHARCELLS
639 gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER)); 639 gui_syncsplash(HZ, str(LANG_END_PLAYLIST_PLAYER));
640#else 640#else
641 gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_RECORDER)); 641 gui_syncsplash(HZ, str(LANG_END_PLAYLIST_RECORDER));
642#endif 642#endif
643 goto exit; 643 goto exit;
644 } 644 }
@@ -696,7 +696,7 @@ bool playlist_viewer_ex(char* filename)
696 ret = playlist_move(viewer.playlist, viewer.move_track, 696 ret = playlist_move(viewer.playlist, viewer.move_track,
697 current_track->index); 697 current_track->index);
698 if (ret < 0) 698 if (ret < 0)
699 gui_syncsplash(HZ, true, str(LANG_MOVE_FAILED)); 699 gui_syncsplash(HZ, str(LANG_MOVE_FAILED));
700 700
701 update_playlist(true); 701 update_playlist(true);
702 viewer.move_track = -1; 702 viewer.move_track = -1;
@@ -819,7 +819,7 @@ bool search_playlist(void)
819 playlist_count = playlist_amount_ex(viewer.playlist); 819 playlist_count = playlist_amount_ex(viewer.playlist);
820 for (i=0;(i<playlist_count)&&(found_indicies_count<MAX_PLAYLIST_ENTRIES);i++) 820 for (i=0;(i<playlist_count)&&(found_indicies_count<MAX_PLAYLIST_ENTRIES);i++)
821 { 821 {
822 gui_syncsplash(0, true, str(LANG_PLAYLIST_SEARCH_MSG),found_indicies_count, 822 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG),found_indicies_count,
823#if CONFIG_KEYPAD == PLAYER_PAD 823#if CONFIG_KEYPAD == PLAYER_PAD
824 str(LANG_STOP_ABORT) 824 str(LANG_STOP_ABORT)
825#else 825#else