diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-24 05:59:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-24 05:59:31 +0000 |
commit | c5ddb150d9565dfd460d43255c2458fb56072180 (patch) | |
tree | 06e27036b6367dbaad256b867a464f0093a9f93a /firmware/drivers/lcd.c | |
parent | 7ce440a166751cfda5bcf6ae16aa04fb8e2d5dc6 (diff) |
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
Diffstat (limited to 'firmware/drivers/lcd.c')
-rw-r--r-- | firmware/drivers/lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c index e2cc454e14..e1e27c8f39 100644 --- a/firmware/drivers/lcd.c +++ b/firmware/drivers/lcd.c @@ -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 |