summaryrefslogtreecommitdiff
path: root/apps/screens.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.h')
-rw-r--r--apps/screens.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/screens.h b/apps/screens.h
index 93894eb654..2e3ebf778d 100644
--- a/apps/screens.h
+++ b/apps/screens.h
@@ -28,8 +28,11 @@ bool f2_screen(void);
28bool f3_screen(void); 28bool f3_screen(void);
29#endif 29#endif
30 30
31void splash(char *text, /* what to say */ 31void splash(int ticks, /* how long */
32 int ticks, /* fow how long */ 32 int keymask,/* what keymask aborts the waiting (if any) */
33 int button);/* what keymask aborts the waiting (if any) */ 33 bool center, /* FALSE means left-justified, TRUE means
34 horizontal and vertical center */
35 char *fmt, /* what to say *printf style */
36 ...);
34 37
35#endif 38#endif