aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
authorreinelt <>2003-09-01 04:09:35 +0000
committerreinelt <>2003-09-01 04:09:35 +0000
commit003b829ced31a74e5e229571f51a19e73f9be138 (patch)
treeeb6420cad25f7e6cc71d58b5643be4ca43e482bd /display.c
parent363c54b8c0bce6871120cdbd39271045e6d33f05 (diff)
downloadlcd4linux-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.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/display.c b/display.c
index 294bf8e..5028b02 100644
--- a/display.c
+++ b/display.c
@@ -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)