summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/ipod.c4
-rw-r--r--firmware/drivers/lcd-ipod.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/ipod.c b/bootloader/ipod.c
index 591b7608aa..03a814f797 100644
--- a/bootloader/ipod.c
+++ b/bootloader/ipod.c
@@ -346,10 +346,10 @@ void* main(void)
346 /* Notes: iPod Color/Photo LCD is 220x176, Nano is 176x138 */ 346 /* Notes: iPod Color/Photo LCD is 220x176, Nano is 176x138 */
347 347
348 /* Display the 42x47 pixel iPodLinux logo */ 348 /* Display the 42x47 pixel iPodLinux logo */
349 lcd_bitmap((unsigned char*)ipllogo, 20,6, 42,47); 349 lcd_bitmap(ipllogo, 20,6, 42,47);
350 350
351 /* Display the 100x31 pixel Rockbox logo */ 351 /* Display the 100x31 pixel Rockbox logo */
352 lcd_bitmap((unsigned char*)rockboxlogo, 74,16, 100,31); 352 lcd_bitmap(rockboxlogo, 74,16, 100,31);
353 353
354 line=7; 354 line=7;
355 355
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c
index ebb5d3c439..30cd4555ae 100644
--- a/firmware/drivers/lcd-ipod.c
+++ b/firmware/drivers/lcd-ipod.c
@@ -204,7 +204,7 @@ void lcd_init_device(void)
204 204
205/* Performance function that works with an external buffer 205/* Performance function that works with an external buffer
206 note that by and bheight are in 4-pixel units! */ 206 note that by and bheight are in 4-pixel units! */
207void lcd_blit(const unsigned char* data, int x, int by, int width, 207void lcd_blit(const fb_data* data, int x, int by, int width,
208 int bheight, int stride) 208 int bheight, int stride)
209{ 209{
210 /* TODO: Implement lcd_blit() */ 210 /* TODO: Implement lcd_blit() */