summaryrefslogtreecommitdiff
path: root/bootloader/show_logo.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-12-31 19:15:20 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-12-31 19:15:20 +0000
commit2392bb41996963c6683253114bdfb3174146e7dc (patch)
tree3846475be5d2ac2f472fbac22781868ab0b0c60e /bootloader/show_logo.c
parent822abc12360900030323560b92a440f425b5641a (diff)
downloadrockbox-2392bb41996963c6683253114bdfb3174146e7dc.tar.gz
rockbox-2392bb41996963c6683253114bdfb3174146e7dc.zip
FS#10047 : Clipv2
Reuse some code from Clip (LCD) and a lot of code from AS3525 Add a new CPU type : AS3525v2, identical to AS3525 except it's an ARMv5 (arm926-ejs) SD code still not working For an unknown reason LCD doesn't work anymore (to be investigated) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24131 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader/show_logo.c')
-rw-r--r--bootloader/show_logo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/show_logo.c b/bootloader/show_logo.c
index c0627aa423..90cf222067 100644
--- a/bootloader/show_logo.c
+++ b/bootloader/show_logo.c
@@ -41,7 +41,7 @@ int show_logo( void )
41 lcd_clear_display(); 41 lcd_clear_display();
42 lcd_setfont(FONT_SYSFIXED); 42 lcd_setfont(FONT_SYSFIXED);
43 43
44#ifdef SANSA_CLIP 44#if defined(SANSA_CLIP) || defined(SANSA_CLIPV2)
45 /* The top 16 lines of the Sansa Clip screen are yellow, and the bottom 48 45 /* The top 16 lines of the Sansa Clip screen are yellow, and the bottom 48
46 are blue, so we reverse the usual positioning */ 46 are blue, so we reverse the usual positioning */
47 lcd_putsxy(TEXT_XPOS, 0, BOOT_VERSION); 47 lcd_putsxy(TEXT_XPOS, 0, BOOT_VERSION);