fixes #79 64 bit style parts add up to 65 bits.

This commit is contained in:
Garrett D'Amore 2015-11-18 07:03:13 -08:00
parent 8041bf0d83
commit 517e20bb11
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ package tcell
// Style represents a complete text style, including both foreground
// and background color. We encode it in a 64-bit int for efficiency.
// The coding is (MSB): <8b flags><1b><24b fgcolor><7b attr><1b><24b bgcolor>.
// The coding is (MSB): <7b flags><1b><24b fgcolor><7b attr><1b><24b bgcolor>.
// The <1b> is set true to indicate that the color is an RGB color, rather
// than a named index.
//