summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/apps/main.c b/apps/main.c
index a93231e036..58ff1381b7 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -265,9 +265,16 @@ static void init_tagcache(void)
265 } 265 }
266#endif 266#endif
267#ifdef HAVE_LCD_BITMAP 267#ifdef HAVE_LCD_BITMAP
268 splashf(0, "%s [%d/%d]", 268 if (lang_is_rtl())
269 str(LANG_TAGCACHE_INIT), ret, 269 {
270 tagcache_get_max_commit_step()); 270 splashf(0, "[%d/%d] %s", ret, tagcache_get_max_commit_step(),
271 str(LANG_TAGCACHE_INIT));
272 }
273 else
274 {
275 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT), ret,
276 tagcache_get_max_commit_step());
277 }
271#else 278#else
272 lcd_double_height(false); 279 lcd_double_height(false);
273 snprintf(buf, sizeof(buf), " DB [%d/%d]", ret, 280 snprintf(buf, sizeof(buf), " DB [%d/%d]", ret,