From: James S. <jsi...@tr...> - 2002-01-30 17:25:56
|
> Uninicialized variable in "vga_do_font_op" : "vc->display_fg->data_hook" > > Patch: > > > --- ruby-files/drivers/video/vgacon.c Thu Jan 24 20:18:04 2002 > +++ linr/drivers/video/vgacon.c Sun Jan 27 17:43:12 2002 > @@ -486,7 +486,7 @@ > vc->vc_font.height = ORIG_VIDEO_POINTS; > } > vgacon_state.mode = MODE_TEXT; > - > + vc->display_fg->data_hook = (void *) &vgacon_state; > if (init) { > /* Use default font */ > if (vga_512_chars) Thank you for finding this bug. Patch applied. Now I can try out using non default fonts with vgacon. Acorn fonts here I come :-) |