summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/main.c b/apps/main.c
index 59932d6185..6360267243 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -288,13 +288,15 @@ static void init_tagcache(void)
288#endif 288#endif
289 if (lang_is_rtl()) 289 if (lang_is_rtl())
290 { 290 {
291 splashf(0, "[%d/%d] %s", ret, tagcache_get_max_commit_step(), 291 splash_progress(ret, tagcache_get_max_commit_step(),
292 str(LANG_TAGCACHE_INIT)); 292 "[%d/%d] %s", ret, tagcache_get_max_commit_step(),
293 str(LANG_TAGCACHE_INIT));
293 } 294 }
294 else 295 else
295 { 296 {
296 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT), ret, 297 splash_progress(ret, tagcache_get_max_commit_step(),
297 tagcache_get_max_commit_step()); 298 "%s [%d/%d]", str(LANG_TAGCACHE_INIT), ret,
299 tagcache_get_max_commit_step());
298 } 300 }
299 clear = true; 301 clear = true;
300 } 302 }