From 003b829ced31a74e5e229571f51a19e73f9be138 Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Mon, 1 Sep 2003 04:09:35 +0000 Subject: [lcd4linux @ 2003-09-01 04:09:34 by reinelt] icons nearly finished, but MatrixOrbital only --- display.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'display.c') 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) -- cgit v1.2.3