summaryrefslogtreecommitdiff
path: root/apps/gui/splash.c
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-10-28 23:52:49 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-10-28 23:52:49 +0000
commitd452d26885e67aa7d95f50afcbed14c1b837200d (patch)
treef3b4de36b83d65351b05d7fe7ea08d9c1e73319c /apps/gui/splash.c
parent6ff84632164962aa20a808e7c6708b7a02b015a1 (diff)
downloadrockbox-d452d26885e67aa7d95f50afcbed14c1b837200d.zip
rockbox-d452d26885e67aa7d95f50afcbed14c1b837200d.tar.gz
rockbox-d452d26885e67aa7d95f50afcbed14c1b837200d.tar.bz2
rockbox-d452d26885e67aa7d95f50afcbed14c1b837200d.tar.xz
Changed some fn names, also corrected a bug with fonts and made the filetree work like the original one (stop on reaching list limits when pressing button)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7679 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/splash.c')
-rw-r--r--apps/gui/splash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/splash.c b/apps/gui/splash.c
index a3cbb19..9d1cf75 100644
--- a/apps/gui/splash.c
+++ b/apps/gui/splash.c
@@ -7,7 +7,7 @@
* \/ \/ \/ \/ \/
* $Id$
*
- * Copyright (C) Daniel Stenberg (2002), Kévin FERRARE (2005)
+ * Copyright (C) Daniel Stenberg (2002), Kevin FERRARE (2005)
*
* All files in this archive are subject to the GNU General Public License.
* See the file COPYING in the source tree root for full license agreement.
@@ -207,7 +207,7 @@ void gui_syncsplash(int ticks, bool center, const char *fmt, ...)
va_list ap;
int i;
va_start( ap, fmt );
- for(i=0;i<NB_SCREENS;++i)
+ for(i=0;i<NB_SCREENS;i++)
internal_splash(&(screens[i]), center, fmt, ap);
va_end( ap );