diff options
| -rw-r--r-- | firmware/drivers/lcd-2bit-vert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-2bit-vert.c b/firmware/drivers/lcd-2bit-vert.c index a0598df..799865c 100644 --- a/firmware/drivers/lcd-2bit-vert.c +++ b/firmware/drivers/lcd-2bit-vert.c @@ -33,7 +33,7 @@ /*** definitions ***/ -#define SCROLLABLE_LINES 26 +#define SCROLLABLE_LINES ((LCD_HEIGHT+4)/5 < 32 ? (LCD_HEIGHT+4)/5 : 32) /*** globals ***/ |