summaryrefslogtreecommitdiff
path: root/apps/gui/splash.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-08-06 15:01:45 +0000
committerNils Wallménius <nils@rockbox.org>2007-08-06 15:01:45 +0000
commit1ff0c351f77ad14f4a53c7c87b9b9a20c653a2d8 (patch)
treeba6c1d8d022afe1ccac26e5936fd2cefa6f836b3 /apps/gui/splash.c
parent7fe32b9a27e128e7a674ca24db90cf74d3fa6a54 (diff)
downloadrockbox-1ff0c351f77ad14f4a53c7c87b9b9a20c653a2d8.tar.gz
rockbox-1ff0c351f77ad14f4a53c7c87b9b9a20c653a2d8.zip
Fix red archos sims and make some minor cleanup
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14216 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/splash.c')
-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);