1
0
Fork 0
forked from len0rd/rockbox

x1000: bootloader: refactor splash/splash2

Allow the use of printf formatting and multiple lines of text
using newlines in the string.

Change-Id: I65919bf29c16c34c38cf3995e02d2ddbbaa4bdf3
This commit is contained in:
Aidan MacDonald 2022-03-19 13:54:25 +00:00
parent 41a8b874d2
commit fbe9e4ac10
6 changed files with 82 additions and 39 deletions

View file

@ -44,7 +44,7 @@ void main(void)
enable_irq();
if(storage_init() < 0) {
splash(5*HZ, "storage_init() failed");
splashf(5*HZ, "storage_init() failed");
power_off();
}