summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-11-08 22:04:43 +0000
committerThomas Martitz <kugel@rockbox.org>2011-11-08 22:04:43 +0000
commit1280f322ecb7973472b6d408aff7e273c517242d (patch)
treeac89b4aca7dfbae748698d27585b57fcaa0a8fac /firmware/export/lcd.h
parentb02c82e10529f2750103e31285500e927ec37a7c (diff)
downloadrockbox-1280f322ecb7973472b6d408aff7e273c517242d.tar.gz
rockbox-1280f322ecb7973472b6d408aff7e273c517242d.zip
Fix build errors and warnings in the lcd drivers.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30940 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index ad579820ad..76b8b09635 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -546,14 +546,13 @@ extern void lcd_bitmap_transparent_part(const fb_data *src,
546 int height); 546 int height);
547extern void lcd_bitmap_transparent(const fb_data *src, int x, int y, 547extern void lcd_bitmap_transparent(const fb_data *src, int x, int y,
548 int width, int height); 548 int width, int height);
549extern void lcd_bmp_part(const struct bitmap* bm, int src_x, int src_y,
550 int x, int y, int width, int height);
551extern void lcd_bmp(const struct bitmap* bm, int x, int y);
552#else /* LCD_DEPTH == 1 */ 549#else /* LCD_DEPTH == 1 */
553#define lcd_mono_bitmap lcd_bitmap 550#define lcd_mono_bitmap lcd_bitmap
554#define lcd_mono_bitmap_part lcd_bitmap_part 551#define lcd_mono_bitmap_part lcd_bitmap_part
555#endif /* LCD_DEPTH */ 552#endif /* LCD_DEPTH */
556 553extern void lcd_bmp_part(const struct bitmap* bm, int src_x, int src_y,
554 int x, int y, int width, int height);
555extern void lcd_bmp(const struct bitmap* bm, int x, int y);
557#endif /* HAVE_LCD_BITMAP */ 556#endif /* HAVE_LCD_BITMAP */
558 557
559 558