summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-02 00:32:26 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-02 00:32:26 +0000
commitfef40e465abe7ddfc5895bf2547a3f004eaa9b5c (patch)
treef9ba6ef8e2d388e07c4e5929136ddc165be663db
parentc55ec18f985e2dc9eea87b36d3f94ec7aeb79677 (diff)
downloadrockbox-fef40e465abe7ddfc5895bf2547a3f004eaa9b5c.tar.gz
rockbox-fef40e465abe7ddfc5895bf2547a3f004eaa9b5c.zip
These remote LCD bitmap functions cannot be added without warning this way; revert for now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12997 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/screen_access.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c
index bf2d222760..89b09ad959 100644
--- a/apps/screen_access.c
+++ b/apps/screen_access.c
@@ -54,16 +54,6 @@ void screen_init(struct screen * screen, enum screen_type screen_type)
54 screen->mono_bitmap_part=&lcd_remote_mono_bitmap_part; 54 screen->mono_bitmap_part=&lcd_remote_mono_bitmap_part;
55 screen->set_drawmode=&lcd_remote_set_drawmode; 55 screen->set_drawmode=&lcd_remote_set_drawmode;
56#if LCD_REMOTE_DEPTH > 1 56#if LCD_REMOTE_DEPTH > 1
57 screen->bitmap=&lcd_remote_bitmap;
58 screen->bitmap_part=&lcd_remote_bitmap_part;
59#if LCD_REMOTE_DEPTH == 2
60 /* No transparency yet for grayscale lcd */
61 screen->transparent_bitmap=&lcd_remote_bitmap;
62 screen->transparent_bitmap_part=&lcd_remote_bitmap_part;
63#else
64 screen->transparent_bitmap=&lcd_remote_bitmap_transparent;
65 screen->transparent_bitmap_part=&lcd_remote_bitmap_transparent_part;
66#endif
67#if defined(HAVE_LCD_COLOR) 57#if defined(HAVE_LCD_COLOR)
68 screen->color_to_native=&lcd_remote_color_to_native; 58 screen->color_to_native=&lcd_remote_color_to_native;
69#endif 59#endif