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 0d59354804..62e755a53a 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -293,7 +293,7 @@ static bool playlist_viewer_init(struct playlist_viewer * viewer,
293 if (!have_list) 293 if (!have_list)
294 { 294 {
295 /* Nothing to view, exit */ 295 /* Nothing to view, exit */
296 gui_syncsplash(HZ, str(LANG_CATALOG_NO_PLAYLISTS)); 296 splash(HZ, str(LANG_CATALOG_NO_PLAYLISTS));
297 return false; 297 return false;
298 } 298 }
299 299
@@ -680,8 +680,8 @@ bool playlist_viewer_ex(const char* filename)
680 ret_val = playlist_move(viewer.playlist, viewer.move_track, 680 ret_val = playlist_move(viewer.playlist, viewer.move_track,
681 current_track->index); 681 current_track->index);
682 if (ret_val < 0) 682 if (ret_val < 0)
683 gui_syncsplash(HZ, (unsigned char *)"%s %s", 683 splashf(HZ, (unsigned char *)"%s %s", str(LANG_MOVE),
684 str(LANG_MOVE), str(LANG_FAILED)); 684 str(LANG_FAILED));
685 update_playlist(true); 685 update_playlist(true);
686 viewer.move_track = -1; 686 viewer.move_track = -1;
687 } 687 }
@@ -795,7 +795,7 @@ bool search_playlist(void)
795 playlist_count = playlist_amount_ex(viewer.playlist); 795 playlist_count = playlist_amount_ex(viewer.playlist);
796 for (i=0;(i<playlist_count)&&(found_indicies_count<MAX_PLAYLIST_ENTRIES);i++) 796 for (i=0;(i<playlist_count)&&(found_indicies_count<MAX_PLAYLIST_ENTRIES);i++)
797 { 797 {
798 gui_syncsplash(0, str(LANG_PLAYLIST_SEARCH_MSG),found_indicies_count, 798 splashf(0, str(LANG_PLAYLIST_SEARCH_MSG), found_indicies_count,
799 str(LANG_OFF_ABORT)); 799 str(LANG_OFF_ABORT));
800 if (action_userabort(TIMEOUT_NOBLOCK)) 800 if (action_userabort(TIMEOUT_NOBLOCK))
801 { 801 {