diff options
Diffstat (limited to 'common/lcd.c')
| -rw-r--r-- | common/lcd.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/common/lcd.c b/common/lcd.c index 590bbb930..b09e45fc1 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -99,6 +99,9 @@ static int lcd_getbgcolor(void);  static void lcd_setfgcolor(int color);  static void lcd_setbgcolor(int color); +static int lcd_color_fg; +static int lcd_color_bg; +  char lcd_is_enabled = 0;  static char lcd_flush_dcache;	/* 1 to flush dcache after each lcd update */ @@ -534,12 +537,10 @@ static void lcd_setbgcolor(int color)  /*----------------------------------------------------------------------*/ -#ifdef	NOT_USED_SO_FAR -static int lcd_getfgcolor(void) +int lcd_getfgcolor(void)  {  	return lcd_color_fg;  } -#endif	/* NOT_USED_SO_FAR */  /*----------------------------------------------------------------------*/ |