Browse Source

Add notice about Chrome 10 bug to BUGS.

Dmitry Chestnykh 14 years ago
parent
commit
8d3ca40d18
1 changed files with 5 additions and 0 deletions
  1. 5 0
      audio.go

+ 5 - 0
audio.go

@@ -26,6 +26,11 @@ func init() {
 	endingBeepSound = changeSpeed(beepSound, 1.4)
 }
 
+// BUG(dchest): [Not our bug] Google Chrome 10 plays unsigned 8-bit PCM WAVE
+// audio on Mac with horrible distortions.  Issue:
+// http://code.google.com/p/chromium/issues/detail?id=70730.
+// This has been fixed, and version 12 will play them properly.
+
 type Audio struct {
 	body *bytes.Buffer
 }