Subject: Re: Color X
To: Markus Illenseer <markus@techfak.uni-bielefeld.de>
From: Chris Hopps <chopps@emunix.emich.edu>
List: amiga-dev
Date: 04/19/1994 09:16:04
> ----------- snip ------- snap -------
> if (gp->g_display.gd_colors == 2)
> printf("monochrome");
> else
> printf("%d color", gp->g_display.gd_colors);
Is correct.
> ----------- 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);
> }
I haven't been in the code recently but why would the driver get this far
if it isn't going to provide at least 2 colors?
Chris.
------------------------------------------------------------------------------