diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-10-31 19:55:47 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-10-31 19:57:31 -0400 |
commit | bf2a929f4ea34cf81c23478560203480a01a56c6 (patch) | |
tree | 1ca6406158d0cde32c9a80450ad066b3dac51b2d | |
parent | b30f05badca5fdad88faa7decb24efbfc9da9851 (diff) | |
download | rockbox-bf2a929f4e.tar.gz rockbox-bf2a929f4e.zip |
main: Include the version string in "no partitions found" error
Change-Id: I63ddecebb9d0e27eff27eedf5ec4b6e30508152f
-rw-r--r-- | apps/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 1e8e872296..53a2f9196b 100644 --- a/apps/main.c +++ b/apps/main.c @@ -631,6 +631,7 @@ static void init(void) #elif !defined(DEBUG) && !(CONFIG_STORAGE & STORAGE_RAMDISK) lcd_puts(0, 2, "Rebooting in 5s"); #endif + lcd_puts(0, 4, rbversion); lcd_update(); #ifndef USB_NONE |