summaryrefslogtreecommitdiffstats
path: root/apps/gui
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-05-29 14:40:12 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-05-29 14:40:12 +0000
commit0792596e1757a5ad91c3959d3721d812c8a282eb (patch)
treec372b19728d615a48374c495678a7007f7534cba /apps/gui
parent0501fb016c4d88d3430a34ecc55a003e062b5f63 (diff)
downloadrockbox-0792596e1757a5ad91c3959d3721d812c8a282eb.tar.gz
rockbox-0792596e1757a5ad91c3959d3721d812c8a282eb.zip
the splash should set the viewport to NULL untill we start passing it a vp. (not any time soon though)
"fix" FS#9044 by changing the delete dir screen to use the splash instead so it doesnt have to worry about the statusbar height git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17654 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/splash.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/splash.c b/apps/gui/splash.c
index df0446e62d..1ead051b06 100644
--- a/apps/gui/splash.c
+++ b/apps/gui/splash.c
@@ -214,7 +214,10 @@ void gui_syncsplash(int ticks, const char *fmt, ...)
fmt = P2STR((unsigned char *)fmt);
va_start( ap, fmt );
FOR_NB_SCREENS(i)
+ {
+ screens[i].set_viewport(NULL);
splash(&(screens[i]), fmt, ap);
+ }
va_end( ap );
if(ticks)