summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/lcd-recorder.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index 25497723ba..1c899307ed 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -90,11 +90,10 @@ static int xmargin = 0;
90static int ymargin = 0; 90static int ymargin = 0;
91static int curfont = FONT_SYSFIXED; 91static int curfont = FONT_SYSFIXED;
92 92
93#ifdef SIMULATOR 93#ifndef SIMULATOR
94unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8]; 94static
95#else
96static unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
97#endif 95#endif
96unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8];
98 97
99/* All zeros and ones bitmaps for area filling */ 98/* All zeros and ones bitmaps for area filling */
100static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; 99static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };