diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-04-02 00:32:26 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-04-02 00:32:26 +0000 |
commit | fef40e465abe7ddfc5895bf2547a3f004eaa9b5c (patch) | |
tree | f9ba6ef8e2d388e07c4e5929136ddc165be663db | |
parent | c55ec18f985e2dc9eea87b36d3f94ec7aeb79677 (diff) |
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.c | 10 |
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) screen->mono_bitmap_part=&lcd_remote_mono_bitmap_part; screen->set_drawmode=&lcd_remote_set_drawmode; #if LCD_REMOTE_DEPTH > 1 - screen->bitmap=&lcd_remote_bitmap; - screen->bitmap_part=&lcd_remote_bitmap_part; -#if LCD_REMOTE_DEPTH == 2 - /* No transparency yet for grayscale lcd */ - screen->transparent_bitmap=&lcd_remote_bitmap; - screen->transparent_bitmap_part=&lcd_remote_bitmap_part; -#else - screen->transparent_bitmap=&lcd_remote_bitmap_transparent; - screen->transparent_bitmap_part=&lcd_remote_bitmap_transparent_part; -#endif #if defined(HAVE_LCD_COLOR) screen->color_to_native=&lcd_remote_color_to_native; #endif |