From 714cca067dfc3546cbc6bcc7b7137f5c6977f2ac Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 20 Jun 2002 14:06:57 +0000 Subject: extended charset by Magnus Ă–man MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1127 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firmware/drivers') diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c index 15d4955501..c470021de2 100644 --- a/firmware/drivers/lcd.c +++ b/firmware/drivers/lcd.c @@ -504,7 +504,7 @@ void lcd_getstringsize(char *str, unsigned int font, int *w, int *h) while((ch = *str++)) { /* 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 -- cgit v1.2.3