summaryrefslogtreecommitdiff
path: root/bootloader/x1000/main.c
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/main.c
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/main.c')
-rw-r--r--bootloader/x1000/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/x1000/main.c b/bootloader/x1000/main.c
index c507b1d2c9..0909a4c72a 100644
--- a/bootloader/x1000/main.c
+++ b/bootloader/x1000/main.c
@@ -44,7 +44,7 @@ void main(void)
44 enable_irq(); 44 enable_irq();
45 45
46 if(storage_init() < 0) { 46 if(storage_init() < 0) {
47 splash(5*HZ, "storage_init() failed"); 47 splashf(5*HZ, "storage_init() failed");
48 power_off(); 48 power_off();
49 } 49 }
50 50