Преглед изворни кода

Add notice about Chrome 10 bug to BUGS.

Dmitry Chestnykh пре 14 година
родитељ
комит
8d3ca40d18
1 измењених фајлова са 5 додато и 0 уклоњено
  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
 }