summaryrefslogtreecommitdiffstats
path: root/firmware/drivers/lcd-h100.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-h100.c')
-rw-r--r--firmware/drivers/lcd-h100.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/firmware/drivers/lcd-h100.c b/firmware/drivers/lcd-h100.c
index 7047578550..075ba394b6 100644
--- a/firmware/drivers/lcd-h100.c
+++ b/firmware/drivers/lcd-h100.c
@@ -84,10 +84,14 @@ static int xoffset = 0; /* needed for flip */
unsigned char lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];
-/* All zeros and ones bitmaps for area filling */
-static const unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
-static const unsigned char ones[8] = { 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff};
+/* All zeros and ones bitmaps for area filling */
+static const unsigned char zeros[16] = {
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
+};
+static const unsigned char ones[16] = {
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
+};
int lcd_default_contrast(void)
{