summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-04-30 07:41:05 +0200
committerThomas Martitz <kugel@rockbox.org>2014-01-07 14:13:48 +0100
commite1c7b3b8f72becc9079c04253a2985f577850a48 (patch)
tree84358cf14d067ab5089813d3778a96bfbaa66670 /firmware/export
parentdeb6ac3693a6fb5c47abd0c32f966f5e38b6a68a (diff)
downloadrockbox-e1c7b3b8f72becc9079c04253a2985f577850a48.tar.gz
rockbox-e1c7b3b8f72becc9079c04253a2985f577850a48.zip
lcd-16bit: Remove {lss,lse,lst}_pattern fields from struct viewport.
These where used for line styling during scrolling, which is now done in apps/, The viewport struct doesn't need to record these anymore. Change-Id: I810d9dcb2644b00a798c6e75acab69c74a78e77f
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index e7a75e893a..9efec9da4d 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -48,11 +48,6 @@ struct viewport {
48#if LCD_DEPTH > 1 48#if LCD_DEPTH > 1
49 unsigned fg_pattern; 49 unsigned fg_pattern;
50 unsigned bg_pattern; 50 unsigned bg_pattern;
51#ifdef HAVE_LCD_COLOR
52 unsigned lss_pattern;
53 unsigned lse_pattern;
54 unsigned lst_pattern;
55#endif
56#endif 51#endif
57}; 52};
58 53