|
From: Antonino D. <ad...@po...> - 2003-02-17 11:33:53
|
On Sun, 2003-02-16 at 14:08, Antonino Daplas wrote: > 3. Fixed all drivers affected by the (image.depth == 0) is color > expansion. > Sigh, missed fbcon_putc(). Tony diff -Naur linux-2.5.61-fbdev/drivers/video/console/fbcon.c linux-2.5.61/drivers/video/console/fbcon.c --- linux-2.5.61-fbdev/drivers/video/console/fbcon.c 2003-02-17 10:48:33.000000000 +0000 +++ linux-2.5.61/drivers/video/console/fbcon.c 2003-02-17 10:49:13.000000000 +0000 @@ -1157,7 +1157,7 @@ image.dy = real_y(p, ypos) * vc->vc_font.height; image.width = vc->vc_font.width; image.height = vc->vc_font.height; - image.depth = 1; + image.depth = 0; image.data = p->fontdata + (c & charmask) * vc->vc_font.height * width; info->fbops->fb_imageblit(info, &image); |