Index: drivers/lcd.c
===================================================================
RCS file: /cvsroot/rockbox/firmware/drivers/lcd.c,v
retrieving revision 1.94
diff -r1.94 lcd.c
419c419
<     while (*string && x++<11)
---
>     while (*string && x++ < LCD_COLS)
869c869
<     if(strlen(str)+x > 11 ) {
---
>     if(strlen(str)+x > LCD_COLS ) {
871c871
<         buffer[11-x]=0;
---
>         buffer[LCD_COLS-x]=0;
1280c1280
<     s->space = 11 - x;
---
>     s->space = LCD_COLS - x;
Index: drivers/lcd.h
===================================================================
RCS file: /cvsroot/rockbox/firmware/drivers/lcd.h,v
retrieving revision 1.34
diff -r1.34 lcd.h
78a79,83
> #define LCD_CHARCELL_WIDTH 5
> #define LCD_CHARCELL_HEIGHT 7
> #define LCD_ROWS 2
> #define LCD_COLS 11
> 

