summaryrefslogtreecommitdiff
path: root/apps/playlist_catalog.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist_catalog.c')
-rw-r--r--apps/playlist_catalog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/playlist_catalog.c b/apps/playlist_catalog.c
index d0602991e4..1e3d523181 100644
--- a/apps/playlist_catalog.c
+++ b/apps/playlist_catalog.c
@@ -112,7 +112,7 @@ static int initialize_catalog(void)
112 if (!playlist_dir_exists) 112 if (!playlist_dir_exists)
113 { 113 {
114 if (mkdir(playlist_dir) < 0) { 114 if (mkdir(playlist_dir) < 0) {
115 gui_syncsplash(HZ*2, true, str(LANG_CATALOG_NO_DIRECTORY), 115 gui_syncsplash(HZ*2, str(LANG_CATALOG_NO_DIRECTORY),
116 playlist_dir); 116 playlist_dir);
117 return -1; 117 return -1;
118 } 118 }
@@ -146,7 +146,7 @@ static int create_playlist_list(char** playlists, int num_items,
146 146
147 if (ft_load(tc, playlist_dir) < 0) 147 if (ft_load(tc, playlist_dir) < 0)
148 { 148 {
149 gui_syncsplash(HZ*2, true, str(LANG_CATALOG_NO_DIRECTORY), 149 gui_syncsplash(HZ*2, str(LANG_CATALOG_NO_DIRECTORY),
150 playlist_dir); 150 playlist_dir);
151 goto exit; 151 goto exit;
152 } 152 }
@@ -231,7 +231,7 @@ static int display_playlists(char* playlist, bool view)
231 231
232 if (num_playlists <= 0) 232 if (num_playlists <= 0)
233 { 233 {
234 gui_syncsplash(HZ*2, true, str(LANG_CATALOG_NO_PLAYLISTS)); 234 gui_syncsplash(HZ*2, str(LANG_CATALOG_NO_PLAYLISTS));
235 return -1; 235 return -1;
236 } 236 }
237 237
@@ -319,7 +319,7 @@ static int display_playlists(char* playlist, bool view)
319 insert */ 319 insert */
320static void display_insert_count(int count) 320static void display_insert_count(int count)
321{ 321{
322 gui_syncsplash(0, true, str(LANG_PLAYLIST_INSERT_COUNT), count, 322 gui_syncsplash(0, str(LANG_PLAYLIST_INSERT_COUNT), count,
323#if CONFIG_KEYPAD == PLAYER_PAD 323#if CONFIG_KEYPAD == PLAYER_PAD
324 str(LANG_STOP_ABORT) 324 str(LANG_STOP_ABORT)
325#else 325#else