summaryrefslogtreecommitdiff
path: root/apps/root_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/root_menu.c')
-rw-r--r--apps/root_menu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/root_menu.c b/apps/root_menu.c
index bee17f183e..7322cbd9f6 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -127,14 +127,14 @@ static int browser(void* param)
127 /* Maybe just needs to reboot due to delayed commit */ 127 /* Maybe just needs to reboot due to delayed commit */
128 if (stat->commit_delayed) 128 if (stat->commit_delayed)
129 { 129 {
130 gui_syncsplash(HZ*2, ID2P(LANG_PLEASE_REBOOT)); 130 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
131 break; 131 break;
132 } 132 }
133 133
134 /* Check if ready status is known */ 134 /* Check if ready status is known */
135 if (!stat->readyvalid) 135 if (!stat->readyvalid)
136 { 136 {
137 gui_syncsplash(0, str(LANG_TAGCACHE_BUSY)); 137 splash(0, str(LANG_TAGCACHE_BUSY));
138 continue; 138 continue;
139 } 139 }
140 140
@@ -178,14 +178,14 @@ static int browser(void* param)
178 } 178 }
179 if (stat->commit_step > 0) 179 if (stat->commit_step > 0)
180 { 180 {
181 gui_syncsplash(0, "%s [%d/%d]", 181 splashf(0, "%s [%d/%d]",
182 str(LANG_TAGCACHE_INIT), stat->commit_step, 182 str(LANG_TAGCACHE_INIT), stat->commit_step,
183 tagcache_get_max_commit_step()); 183 tagcache_get_max_commit_step());
184 } 184 }
185 else 185 else
186 { 186 {
187 gui_syncsplash(0, str(LANG_BUILDING_DATABASE), 187 splashf(0, str(LANG_BUILDING_DATABASE),
188 stat->processed_entries); 188 stat->processed_entries);
189 } 189 }
190 } 190 }
191 } 191 }
@@ -254,7 +254,7 @@ static int wpsscrn(void* param)
254 } 254 }
255 else 255 else
256 { 256 {
257 gui_syncsplash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME)); 257 splash(HZ*2, ID2P(LANG_NOTHING_TO_RESUME));
258 } 258 }
259#if LCD_DEPTH > 1 259#if LCD_DEPTH > 1
260 show_main_backdrop(); 260 show_main_backdrop();