Shading fix
authorH. Peter Anvin <hpa@zytor.com>
Thu, 31 Aug 2006 22:59:45 +0000 (15:59 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Thu, 31 Aug 2006 22:59:45 +0000 (15:59 -0700)
com32/lib/sys/vesa/drawtxt.c

index f2c7951..5910e08 100644 (file)
@@ -113,7 +113,7 @@ static void vesacon_update_characters(int row, int col, int nrows, int ncols)
     chsbits = __vesacon_graphics_font[csptr->ch][pixsrow];
     chsbits &= (csptr->sha & 0x02) ? 0xff : 0x00;
     chsbits ^= (csptr->sha & 0x01) ? 0xff : 0x00;
-    chsbits <<= 7;
+    chsbits <<= 6;
     csptr++;
     
     for (j = width*ncols; j >= 0; j--) {