浏览代码

Wrong gradient in % bar CP437.

Steve Thielemann 3 年之前
父节点
当前提交
61cb013da4
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 {