1
0
Fork 0
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:
Daniel Stenberg 2002-06-24 05:59:31 +00:00
parent 7ce440a166
commit c5ddb150d9

View file

@ -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