summaryrefslogtreecommitdiffstats
path: root/bootloader/iriver_h1x0.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2014-08-28 10:26:45 -0400
committerMichael Sevakis <jethead71@rockbox.org>2014-08-28 10:44:22 -0400
commit95a4c3afcd53a1f8b835dec33de51f9c304de4d9 (patch)
tree951877fd6a5604da066ced93e0e1a16a99181de2 /bootloader/iriver_h1x0.c
parent21e2b595c2797c226699cf19a2a2ad4abf22b210 (diff)
downloadrockbox-95a4c3afcd53a1f8b835dec33de51f9c304de4d9.tar.gz
rockbox-95a4c3afcd53a1f8b835dec33de51f9c304de4d9.zip
Fix up the bootloaders
They can't access the raw RBVERSION define any longer. Change-Id: I698062b36306399945c01de54cdccaa1a1a8434e
Diffstat (limited to 'bootloader/iriver_h1x0.c')
-rw-r--r--bootloader/iriver_h1x0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/iriver_h1x0.c b/bootloader/iriver_h1x0.c
index 61077f3842..7f236d4510 100644
--- a/bootloader/iriver_h1x0.c
+++ b/bootloader/iriver_h1x0.c
@@ -254,7 +254,7 @@ void failsafe_menu(void)
extern int line;
reset_screen();
- printf("Bootloader " RBVERSION);
+ printf("Bootloader %s", rbversion);
check_battery();
printf("=========================");
line += FAILSAFE_OPTIONS;
@@ -502,7 +502,7 @@ void main(void)
lcd_setfont(FONT_SYSFIXED);
printf("Rockbox boot loader");
- printf("Version " RBVERSION);
+ printf("Version %s", rbversion);
/* No need to wait here more because lcd_init and others already do that. */
// sleep(HZ/50); /* Allow the button driver to check the buttons */