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 /display.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 'display.c')
-rw-r--r-- | display.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: display.c,v 1.39 2003/08/24 05:17:58 reinelt Exp $ +/* $Id: display.c,v 1.40 2003/09/01 04:09:34 reinelt Exp $ * * framework for device drivers * @@ -20,6 +20,9 @@ * * * $Log: display.c,v $ + * Revision 1.40 2003/09/01 04:09:34 reinelt + * icons nearly finished, but MatrixOrbital only + * * Revision 1.39 2003/08/24 05:17:58 reinelt * liblcd4linux patch from Patrick Schemitz * @@ -363,13 +366,13 @@ int lcd_bar (int type, int row, int col, int max, int len1, int len2) return Lcd->bar (type & BAR_HV, row-1, col-1, max, len1, len2); } -int lcd_icon (int num, int row, int col, unsigned char *bitmap) +int lcd_icon (int num, int row, int col) { if (num<1 || num>Lcd->icons) return -1; if (row<1 || row>Lcd->rows) return -1; if (col<1 || col>Lcd->cols) return -1; if (Lcd->icon==NULL) return 0; - return Lcd->icon(num-1, row-1, col-1, bitmap); + return Lcd->icon(num-1, row-1, col-1); } int lcd_gpo (int num, int val) |