diff options
Diffstat (limited to 'apps/gui/splash.c')
-rw-r--r-- | apps/gui/splash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/splash.c b/apps/gui/splash.c index 385d75a2cf..fc15294211 100644 --- a/apps/gui/splash.c +++ b/apps/gui/splash.c @@ -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_NB_SCREENS(i) internal_splash(&(screens[i]), center, fmt, ap); va_end( ap ); |