fixes #75 Add goreport and fix related issues (go fmt)

This commit is contained in:
Garrett D'Amore 2015-11-04 17:30:19 -08:00
parent f763a5b1b7
commit 9575857d57
1 changed files with 2 additions and 2 deletions

View File

@ -83,13 +83,13 @@ const (
AttrReverse
)
func fixColor(c tcell.Color) tcell.Color {
func fixColor(c tcell.Color) tcell.Color {
if c == tcell.ColorDefault {
return c
}
switch outMode {
case OutputNormal:
c %= tcell.Color(16)
c %= tcell.Color(16)
case Output256:
c %= tcell.Color(256)
case Output216: