diff options
author | Adam Borowski <kilobyte@angband.pl> | 2016-09-15 16:47:11 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-22 11:41:54 +0200 |
commit | 3e7ec4a0e635d7b95c5ec30df3ed79164bbf3acb (patch) | |
tree | 3d167888f3b9736853830b5d9388e68063a2bb99 /drivers/tty | |
parent | 0bf1f4a8a399d2c8c0396b8cc0439f8d6ca3581b (diff) | |
download | linux-3e7ec4a0e635d7b95c5ec30df3ed79164bbf3acb.tar.bz2 |
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>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/vt/vt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 52442ccf20c0..20d89c2a780a 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c @@ -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]; |