diff options
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/drivers/lcd-recorder.c | 7 |
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; static int ymargin = 0; static int curfont = FONT_SYSFIXED; -#ifdef SIMULATOR -unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8]; -#else -static unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8]; +#ifndef SIMULATOR +static #endif +unsigned char lcd_framebuffer[LCD_WIDTH][LCD_HEIGHT/8]; /* All zeros and ones bitmaps for area filling */ static unsigned char zeros[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; |