From c5ddb150d9565dfd460d43255c2458fb56072180 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 24 Jun 2002 05:59:31 +0000 Subject: 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 --- firmware/drivers/lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firmware') 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 -- cgit v1.2.3