aboutsummaryrefslogtreecommitdiffstats
path: root/icon.c
diff options
context:
space:
mode:
authorreinelt <>2003-09-11 04:09:53 +0000
committerreinelt <>2003-09-11 04:09:53 +0000
commit9ca2c5a005bc4f309b93d36880c543787e823eab (patch)
treed17d4de75c046c1d10f0e19e33c0dc35449ee79c /icon.c
parent0459e86692f8d1f8df67ef67431f122f4db298b6 (diff)
downloadlcd4linux-9ca2c5a005bc4f309b93d36880c543787e823eab.tar.gz
[lcd4linux @ 2003-09-11 04:09:52 by reinelt]
minor cleanups
Diffstat (limited to 'icon.c')
-rw-r--r--icon.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/icon.c b/icon.c
index a43f007..b52fe95 100644
--- a/icon.c
+++ b/icon.c
@@ -1,4 +1,4 @@
-/* $Id: icon.c,v 1.6 2003/09/10 14:01:53 reinelt Exp $
+/* $Id: icon.c,v 1.7 2003/09/11 04:09:53 reinelt Exp $
*
* generic icon and heartbeat handling
*
@@ -20,6 +20,9 @@
*
*
* $Log: icon.c,v $
+ * Revision 1.7 2003/09/11 04:09:53 reinelt
+ * minor cleanups
+ *
* Revision 1.6 2003/09/10 14:01:53 reinelt
* icons nearly finished\!
*
@@ -208,5 +211,8 @@ int icon_draw (int num, int seq, int row, int col)
int icon_peek (int row, int col)
{
- return Screen[row*COLS+col];
+ if (Screen)
+ return Screen[row*COLS+col];
+ else
+ return -1;
}