Ver Fonte

Wrong gradient in % bar CP437.

Steve Thielemann há 3 anos atrás
pai
commit
61cb013da4
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      door/bar.go

+ 1 - 1
door/bar.go

@@ -119,7 +119,7 @@ func (bl *BarLine) Output() string {
 		if Unicode {
 			output += strings.Repeat("\u2588", steps/4)
 		} else {
-			output += strings.Repeat("\xb0", steps/4)
+			output += strings.Repeat("\xdb", steps/4)
 		}
 		if steps%4 != 0 {
 			switch steps % 4 {