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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index ee34d3edb6..fe792e9bbb 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -652,9 +652,9 @@ bool playlist_viewer(void)
652 { 652 {
653 /* Play has stopped */ 653 /* Play has stopped */
654#ifdef HAVE_LCD_CHARCELLS 654#ifdef HAVE_LCD_CHARCELLS
655 splash(HZ, 0, true, str(LANG_END_PLAYLIST_PLAYER)); 655 splash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
656#else 656#else
657 splash(HZ, 0, true, str(LANG_END_PLAYLIST_RECORDER)); 657 splash(HZ, true, str(LANG_END_PLAYLIST_RECORDER));
658#endif 658#endif
659 status_set_playmode(STATUS_STOP); 659 status_set_playmode(STATUS_STOP);
660 return false;; 660 return false;;
@@ -772,7 +772,7 @@ bool playlist_viewer(void)
772 ret = playlist_move(viewer.move_track, 772 ret = playlist_move(viewer.move_track,
773 tracks[INDEX(viewer.cursor_pos)].index); 773 tracks[INDEX(viewer.cursor_pos)].index);
774 if (ret < 0) 774 if (ret < 0)
775 splash(HZ, 0, true, str(LANG_MOVE_FAILED)); 775 splash(HZ, true, str(LANG_MOVE_FAILED));
776 776
777 update_playlist(true); 777 update_playlist(true);
778 viewer.move_track = -1; 778 viewer.move_track = -1;