diff options
-rw-r--r-- | Matrix_5x6/Charlie/Charlie.pde | 2 |
1 files changed, 1 insertions, 1 deletions
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 |