From 89e175fd9e4226c31c4f9e498ec2ca9e191d932b Mon Sep 17 00:00:00 2001 From: Alexander Kauerz Date: Mon, 7 Nov 2011 18:31:53 +0100 Subject: Zahlendarstellung gefixt. --- Matrix_5x6/Charlie/Charlie.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Matrix_5x6/Charlie/Charlie.pde b/Matrix_5x6/Charlie/Charlie.pde index 4acbdde..4648d73 100644 --- a/Matrix_5x6/Charlie/Charlie.pde +++ b/Matrix_5x6/Charlie/Charlie.pde @@ -188,7 +188,7 @@ void lauftext(char *text) { if (c > 0x40 && c < 0x5B) { // Buchstaben f = &(font_chars[c-0x41][0]); } else if (c >= 0x30 && c < 0x3A) { // Zahlen - f = &(font_numbers[c-0x20][0]); + f = &(font_numbers[c-0x30][0]); } else if (c == ' ') // Leerzeichen f = &(font_space[0][0]); else if (c == '#') // Füllzeichen -- cgit v1.2.3