color: remove unneeded bright comparision to prevent duplicate pairs
Signed-off-by: Brand Huntsman <alpha@qzx.com>master
parent
e4cef3086b
commit
03bc19fd0c
|
@ -90,8 +90,7 @@ void set_colorpairs(void)
|
||||||
const colortype *beforenow = sint->color;
|
const colortype *beforenow = sint->color;
|
||||||
|
|
||||||
while (beforenow != ink && (beforenow->fg != ink->fg ||
|
while (beforenow != ink && (beforenow->fg != ink->fg ||
|
||||||
beforenow->bg != ink->bg ||
|
beforenow->bg != ink->bg))
|
||||||
beforenow->bright != ink->bright))
|
|
||||||
beforenow = beforenow->next;
|
beforenow = beforenow->next;
|
||||||
|
|
||||||
if (beforenow != ink)
|
if (beforenow != ink)
|
||||||
|
|
Loading…
Reference in New Issue