diff options
Diffstat (limited to 'apps/root_menu.c')
-rw-r--r-- | apps/root_menu.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/apps/root_menu.c b/apps/root_menu.c index 80a84d9d49..95524e1ba3 100644 --- a/apps/root_menu.c +++ b/apps/root_menu.c @@ -241,15 +241,19 @@ static int browser(void* param) { if (lang_is_rtl()) { - splashf(0, "[%d/%d] %s", stat->commit_step, - tagcache_get_max_commit_step(), - str(LANG_TAGCACHE_INIT)); + splash_progress(stat->commit_step, + tagcache_get_max_commit_step(), + "[%d/%d] %s", stat->commit_step, + tagcache_get_max_commit_step(), + str(LANG_TAGCACHE_INIT)); } else { - splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT), - stat->commit_step, - tagcache_get_max_commit_step()); + splash_progress(stat->commit_step, + tagcache_get_max_commit_step(), + "%s [%d/%d]", str(LANG_TAGCACHE_INIT), + stat->commit_step, + tagcache_get_max_commit_step()); } } else |