summaryrefslogtreecommitdiff
path: root/apps/gui/splash.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/splash.c')
-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 4ddd22aba2..39d224a742 100644
--- a/apps/gui/splash.c
+++ b/apps/gui/splash.c
@@ -204,12 +204,15 @@ void splashf(int ticks, const char *fmt, ...)
204 fmt = P2STR((unsigned char *)fmt); 204 fmt = P2STR((unsigned char *)fmt);
205 FOR_NB_SCREENS(i) 205 FOR_NB_SCREENS(i)
206 { 206 {
207 viewportmanager_theme_enable(i, false, NULL);
207 va_start(ap, fmt); 208 va_start(ap, fmt);
208 splash_internal(&(screens[i]), fmt, ap); 209 splash_internal(&(screens[i]), fmt, ap);
209 va_end(ap); 210 va_end(ap);
210 } 211 }
211 if (ticks) 212 if (ticks)
212 sleep(ticks); 213 sleep(ticks);
214 FOR_NB_SCREENS(i)
215 viewportmanager_theme_undo(i);
213} 216}
214 217
215void splash(int ticks, const char *str) 218void splash(int ticks, const char *str)