From: asterix Date: Mon, 16 Jun 2008 17:14:02 +0000 (+0000) Subject: Decrese value to 8bit limit. X-Git-Tag: 2.0.0~466 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=4b7d21af2dd8cc7b1e93e62b3fcde0601377798a;p=bertos.git Decrese value to 8bit limit. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1468 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/drv/lcd_text.h b/bertos/drv/lcd_text.h index d05cfcd2..4d466d02 100644 --- a/bertos/drv/lcd_text.h +++ b/bertos/drv/lcd_text.h @@ -83,7 +83,7 @@ #define LCD_NOCURSOR BV(2) /* Scrittura senza spostamento cursore */ /** Special priority value for lcd_setLayerDepth(). */ -#define LAYER_HIDDEN -128 +#define LAYER_HIDDEN -127 /* Compute LCD address from x/y coordinates */ #define LCD_POS(x,y) ((lcdpos_t)((uint8_t)(x) + (uint8_t)(y) * (uint8_t)LCD_COLS))