summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/splash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/splash.c b/apps/gui/splash.c
index 94d9ef6a5c..c690777cc6 100644
--- a/apps/gui/splash.c
+++ b/apps/gui/splash.c
@@ -200,12 +200,14 @@ void gui_syncsplash(int ticks, const unsigned char *fmt, ...)
200{ 200{
201 va_list ap; 201 va_list ap;
202 int i; 202 int i;
203#if !defined(SIMULATOR) || CONFIG_CODEC == SWCODEC
203 long id; 204 long id;
204 /* fmt may be a so called virtual pointer. See settings.h. */ 205 /* fmt may be a so called virtual pointer. See settings.h. */
205 if((id = P2ID(fmt)) >= 0) 206 if((id = P2ID(fmt)) >= 0)
206 /* If fmt specifies a voicefont ID, and voice menus are 207 /* If fmt specifies a voicefont ID, and voice menus are
207 enabled, then speak it. */ 208 enabled, then speak it. */
208 cond_talk_ids_fq(id); 209 cond_talk_ids_fq(id);
210#endif
209 /* If fmt is a lang ID then get the corresponding string (which 211 /* If fmt is a lang ID then get the corresponding string (which
210 still might contain % place holders). */ 212 still might contain % place holders). */
211 fmt = P2STR(fmt); 213 fmt = P2STR(fmt);