소스 검색

Added checkmark (CP437/Unicode).

This revealed a bug in the AlertBox code.
(Fixed with StringLen).
bugz 1 년 전
부모
커밋
fd37aa1963
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      testdoor/testdoor.go

+ 1 - 1
testdoor/testdoor.go

@@ -683,7 +683,7 @@ func main() {
 	if door.CP437 {
 		b = door.AlertBox("Warning: golang \xfb is in use!", 1)
 	} else {
-		b = door.AlertBox("Warning: golang \u2219 is in use!", 1)
+		b = door.AlertBox("Warning: golang \u221a is in use!", 1)
 	}
 
 	d.Write(door.ColorText("BRI WHI ON GREEN"))