summaryrefslogtreecommitdiff
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)
254 extern int line; 254 extern int line;
255 255
256 reset_screen(); 256 reset_screen();
257 printf("Bootloader " RBVERSION); 257 printf("Bootloader %s", rbversion);
258 check_battery(); 258 check_battery();
259 printf("========================="); 259 printf("=========================");
260 line += FAILSAFE_OPTIONS; 260 line += FAILSAFE_OPTIONS;
@@ -502,7 +502,7 @@ void main(void)
502 lcd_setfont(FONT_SYSFIXED); 502 lcd_setfont(FONT_SYSFIXED);
503 503
504 printf("Rockbox boot loader"); 504 printf("Rockbox boot loader");
505 printf("Version " RBVERSION); 505 printf("Version %s", rbversion);
506 506
507 /* No need to wait here more because lcd_init and others already do that. */ 507 /* No need to wait here more because lcd_init and others already do that. */
508 // sleep(HZ/50); /* Allow the button driver to check the buttons */ 508 // sleep(HZ/50); /* Allow the button driver to check the buttons */