Commit 3e7ec4a0 authored by Adam Borowski's avatar Adam Borowski Committed by Greg Kroah-Hartman

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/8346728Signed-off-by: default avatarAdam Borowski <kilobyte@angband.pl>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0bf1f4a8
...@@ -1313,11 +1313,11 @@ static int vc_t416_color(struct vc_data *vc, int i, ...@@ -1313,11 +1313,11 @@ static int vc_t416_color(struct vc_data *vc, int i,
return i; return i;
if (vc->vc_par[i] == 5 && i + 1 <= vc->vc_npar) { if (vc->vc_par[i] == 5 && i + 1 <= vc->vc_npar) {
/* 256 colours -- ubiquitous */ /* 256 colours */
i++; i++;
rgb_from_256(vc->vc_par[i], &c); rgb_from_256(vc->vc_par[i], &c);
} else if (vc->vc_par[i] == 2 && i + 3 <= vc->vc_npar) { } 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.r = vc->vc_par[i + 1];
c.g = vc->vc_par[i + 2]; c.g = vc->vc_par[i + 2];
c.b = vc->vc_par[i + 3]; c.b = vc->vc_par[i + 3];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment