forked from len0rd/rockbox
made the putspropxy() use the exetended charset Magnus has made, forgot
to change this last week git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1133 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7ce440a166
commit
c5ddb150d9
1 changed files with 1 additions and 1 deletions
|
|
@ -541,7 +541,7 @@ void lcd_putspropxy(int x, int y, char *str, int thisfont)
|
|||
return;
|
||||
|
||||
/* Limit to char generation table */
|
||||
if ((ch < ASCII_MIN) || (ch > 0x7a))
|
||||
if ((ch < ASCII_MIN) || (ch > 0xda))
|
||||
/* replace unsupported letters with question marks */
|
||||
ch = ' '-ASCII_MIN;
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue