1
0
Fork 0

vt: Drop a no longer true comment.

Some guy went on a patching spree, adding 24-bit colour support all around:
https://gist.github.com/XVilka/8346728

Signed-off-by: Adam Borowski <kilobyte@angband.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Adam Borowski 2016-09-15 16:47:11 +02:00 committed by Greg Kroah-Hartman
parent 0bf1f4a8a3
commit 3e7ec4a0e6
1 changed files with 2 additions and 2 deletions

View File

@ -1313,11 +1313,11 @@ static int vc_t416_color(struct vc_data *vc, int i,
return i;
if (vc->vc_par[i] == 5 && i + 1 <= vc->vc_npar) {
/* 256 colours -- ubiquitous */
/* 256 colours */
i++;
rgb_from_256(vc->vc_par[i], &c);
} else if (vc->vc_par[i] == 2 && i + 3 <= vc->vc_npar) {
/* 24 bit -- extremely rare */
/* 24 bit */
c.r = vc->vc_par[i + 1];
c.g = vc->vc_par[i + 2];
c.b = vc->vc_par[i + 3];