diff options
author | reinelt <> | 2003-09-01 04:09:35 +0000 |
---|---|---|
committer | reinelt <> | 2003-09-01 04:09:35 +0000 |
commit | 003b829ced31a74e5e229571f51a19e73f9be138 (patch) | |
tree | eb6420cad25f7e6cc71d58b5643be4ca43e482bd /processor.c | |
parent | 363c54b8c0bce6871120cdbd39271045e6d33f05 (diff) | |
download | lcd4linux-003b829ced31a74e5e229571f51a19e73f9be138.tar.gz |
[lcd4linux @ 2003-09-01 04:09:34 by reinelt]
icons nearly finished, but MatrixOrbital only
Diffstat (limited to 'processor.c')
-rw-r--r-- | processor.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/processor.c b/processor.c index 3972485..1ca308a 100644 --- a/processor.c +++ b/processor.c @@ -1,4 +1,4 @@ -/* $Id: processor.c,v 1.37 2003/08/24 05:17:58 reinelt Exp $ +/* $Id: processor.c,v 1.38 2003/09/01 04:09:35 reinelt Exp $ * * main data processing * @@ -20,6 +20,9 @@ * * * $Log: processor.c,v $ + * Revision 1.38 2003/09/01 04:09:35 reinelt + * icons nearly finished, but MatrixOrbital only + * * Revision 1.37 2003/08/24 05:17:58 reinelt * liblcd4linux patch from Patrick Schemitz * @@ -676,6 +679,10 @@ static char *process_row (char *data, int row, int len) *p++='\t'; } + } else if (*s=='&') { + lcd_icon(*(++s)-'0', row, p-buffer+1); + *p++='\t'; + } else { *p++=*s; } |