summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 19a0a22bc3..98cb88ffb1 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -276,10 +276,10 @@ bool check_rockboxdir(void)
276 int i; 276 int i;
277 FOR_NB_SCREENS(i) 277 FOR_NB_SCREENS(i)
278 screens[i].clear_display(); 278 screens[i].clear_display();
279 gui_syncsplash(HZ*2, "No .rockbox directory"); 279 splash(HZ*2, "No .rockbox directory");
280 FOR_NB_SCREENS(i) 280 FOR_NB_SCREENS(i)
281 screens[i].clear_display(); 281 screens[i].clear_display();
282 gui_syncsplash(HZ*2, "Installation incomplete"); 282 splash(HZ*2, "Installation incomplete");
283 return false; 283 return false;
284 } 284 }
285 return true; 285 return true;
@@ -394,7 +394,7 @@ static int update_dir(void)
394#endif 394#endif
395 (tc.dirfull || tc.filesindir == global_settings.max_files_in_dir) ) 395 (tc.dirfull || tc.filesindir == global_settings.max_files_in_dir) )
396 { 396 {
397 gui_syncsplash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL)); 397 splash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL));
398 } 398 }
399 } 399 }
400#ifdef HAVE_TAGCACHE 400#ifdef HAVE_TAGCACHE
@@ -635,7 +635,7 @@ static int dirbrowse()
635 635
636 if (*tc.dirfilter > NUM_FILTER_MODES && numentries==0) 636 if (*tc.dirfilter > NUM_FILTER_MODES && numentries==0)
637 { 637 {
638 gui_syncsplash(HZ*2, ID2P(LANG_NO_FILES)); 638 splash(HZ*2, ID2P(LANG_NO_FILES));
639 return GO_TO_PREVIOUS; /* No files found for rockbox_browser() */ 639 return GO_TO_PREVIOUS; /* No files found for rockbox_browser() */
640 } 640 }
641 641
@@ -889,7 +889,7 @@ bool create_playlist(void)
889 889
890 snprintf(filename, sizeof filename, "%s.m3u8", 890 snprintf(filename, sizeof filename, "%s.m3u8",
891 tc.currdir[1] ? tc.currdir : "/root"); 891 tc.currdir[1] ? tc.currdir : "/root");
892 gui_syncsplash(0, "%s %s", str(LANG_CREATING), filename); 892 splashf(0, "%s %s", str(LANG_CREATING), filename);
893 893
894 trigger_cpu_boost(); 894 trigger_cpu_boost();
895 catalog_add_to_a_playlist(tc.currdir, ATTR_DIRECTORY, true, filename); 895 catalog_add_to_a_playlist(tc.currdir, ATTR_DIRECTORY, true, filename);
@@ -1134,7 +1134,7 @@ void tree_restore(void)
1134 if (global_settings.dircache) 1134 if (global_settings.dircache)
1135 { 1135 {
1136 /* Print "Scanning disk..." to the display. */ 1136 /* Print "Scanning disk..." to the display. */
1137 gui_syncsplash(0, str(LANG_SCANNING_DISK)); 1137 splash(0, str(LANG_SCANNING_DISK));
1138 1138
1139 dircache_build(global_status.dircache_size); 1139 dircache_build(global_status.dircache_size);
1140 } 1140 }