fix cursor bit order
authorRalph Campbell <ralph@ucbvax.Berkeley.EDU>
Mon, 10 May 1993 06:50:36 +0000 (22:50 -0800)
committerRalph Campbell <ralph@ucbvax.Berkeley.EDU>
Mon, 10 May 1993 06:50:36 +0000 (22:50 -0800)
SCCS-vsn: sys/pmax/dev/cfb.c 7.9

usr/src/sys/pmax/dev/cfb.c

index 9b6107b..97955f7 100644 (file)
@@ -7,7 +7,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)cfb.c       7.8 (Berkeley) %G%
+ *     @(#)cfb.c       7.9 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -351,7 +351,7 @@ cfbLoadCursor(cursor)
                while (j < 4) {
                        out = 0;
                        for (i = 0; i < 4; i++) {
                while (j < 4) {
                        out = 0;
                        for (i = 0; i < 4; i++) {
-#ifdef CURSOR_EL
+#ifndef CURSOR_EB
                                out = (out << 2) | ((ap & 0x1) << 1) |
                                        (bp & 0x1);
 #else
                                out = (out << 2) | ((ap & 0x1) << 1) |
                                        (bp & 0x1);
 #else