aboutsummaryrefslogtreecommitdiffstats
path: root/MatrixOrbital.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--MatrixOrbital.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/MatrixOrbital.c b/MatrixOrbital.c
index 2c0a193..74cb3f7 100644
--- a/MatrixOrbital.c
+++ b/MatrixOrbital.c
@@ -1,4 +1,4 @@
-/* $Id: MatrixOrbital.c,v 1.37 2003/09/09 06:54:43 reinelt Exp $
+/* $Id: MatrixOrbital.c,v 1.38 2003/09/09 11:47:47 reinelt Exp $
*
* driver for Matrix Orbital serial display modules
*
@@ -20,6 +20,9 @@
*
*
* $Log: MatrixOrbital.c,v $
+ * Revision 1.38 2003/09/09 11:47:47 reinelt
+ * basic icon support for HD44780
+ *
* Revision 1.37 2003/09/09 06:54:43 reinelt
* new function 'cfg_number()'
*
@@ -476,13 +479,9 @@ static int MO_flush (int protocol)
for (row=0; row<Lcd.rows; row++) {
for (col=0; col<Lcd.cols; col++) {
c=bar_peek(row, col);
+ if (c==-1) c=icon_peek(row, col);
if (c!=-1) {
FrameBuffer1[row*Lcd.cols+col]=(char)c;
- } else {
- c=icon_peek(row, col);
- if (c!=-1) {
- FrameBuffer1[row*Lcd.cols+col]=(char)c;
- }
}
}
for (col=0; col<Lcd.cols; col++) {