Subject: Re: Color X
To: None <amiga-dev@sun-lamp.cs.berkeley.edu>
From: Markus Illenseer <markus@TechFak.Uni-Bielefeld.DE>
List: amiga-dev
Date: 04/16/1994 19:31:43
> > Markus> Apr 15 13:54:21 tiger /netbsd: grf2: 0 x 0 0 color Picasso2 display
> > Markus> Apr 15 13:54:21 tiger /netbsd: grf2 [2167/11]
> >
> > Are there any plans to extend the resolution & depth :-)
reminds me that there is a bug-fix needed in grf.c:
----------- snip ------- snap -------
if (gp->g_display.gd_colors == 2)
printf("monochrome");
else
printf("%d color", gp->g_display.gd_colors);
----------- snip ------- snap -------
switch(gp->g_display.gd_colors)
{
case 0:
printf("disabled");
break;
case 1:
printf("hm, monocolor");
break;
case 2:
printf("monochrome");
break;
default:
printf("%d color", gp->g_display.gd_colors);
}
----------- snip ------- snap -------
Or whatever - who is responsible ?
--
Markus Illenseer
------------------------------------------------------------------------------