diff options
author | Alexander Kauerz <kauerz@informatik.uni-luebeck.de> | 2011-11-07 18:31:53 +0100 |
---|---|---|
committer | Alexander Kauerz <kauerz@informatik.uni-luebeck.de> | 2011-11-07 18:31:53 +0100 |
commit | 89e175fd9e4226c31c4f9e498ec2ca9e191d932b (patch) | |
tree | 043fd131c78eaa7b2e7228d61cc9c67089d883b1 /Matrix_5x6/Charlie | |
parent | 5c7cadacad9dc4197af5353d26c2b8b922002a50 (diff) | |
download | ledmatrix-89e175fd9e4226c31c4f9e498ec2ca9e191d932b.tar ledmatrix-89e175fd9e4226c31c4f9e498ec2ca9e191d932b.zip |
Zahlendarstellung gefixt.
Diffstat (limited to 'Matrix_5x6/Charlie')
-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 |