summaryrefslogtreecommitdiff
path: root/bootloader/x1000/x1000bootloader.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-03-19 13:54:25 +0000
committerAidan MacDonald <amachronic@protonmail.com>2022-03-24 23:40:07 +0000
commitfbe9e4ac10001f931b2f3b9898e3292d36e8cc7c (patch)
treea2508a2e40e21f4591d971e4c3952ada50c59882 /bootloader/x1000/x1000bootloader.h
parent41a8b874d2f088896cfaebecdff81c4b98f65a2a (diff)
downloadrockbox-fbe9e4ac10001f931b2f3b9898e3292d36e8cc7c.tar.gz
rockbox-fbe9e4ac10001f931b2f3b9898e3292d36e8cc7c.zip
x1000: bootloader: refactor splash/splash2
Allow the use of printf formatting and multiple lines of text using newlines in the string. Change-Id: I65919bf29c16c34c38cf3995e02d2ddbbaa4bdf3
Diffstat (limited to 'bootloader/x1000/x1000bootloader.h')
-rw-r--r--bootloader/x1000/x1000bootloader.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/bootloader/x1000/x1000bootloader.h b/bootloader/x1000/x1000bootloader.h
index b0d8d378f4..0309421ced 100644
--- a/bootloader/x1000/x1000bootloader.h
+++ b/bootloader/x1000/x1000bootloader.h
@@ -118,9 +118,7 @@ struct bl_list {
118void clearscreen(void); 118void clearscreen(void);
119void putversion(void); 119void putversion(void);
120void putcenter_y(int y, const char* msg); 120void putcenter_y(int y, const char* msg);
121void putcenter_line(int line, const char* msg); 121void splashf(long delay, const char* msg, ...);
122void splash2(long delay, const char* msg, const char* msg2);
123void splash(long delay, const char* msg);
124int get_button(int timeout); 122int get_button(int timeout);
125void init_lcd(void); 123void init_lcd(void);
126 124