eh different printf

This commit is contained in:
cnlohr
2024-07-12 02:02:41 -07:00
parent e9f97f7757
commit 7f3ebcc732
+1 -1
View File
@@ -139,13 +139,13 @@ async function toggleAudio()
this.iirphase = this.iirphase * 0.999 + diffphase * 0.001; \
diffphase -= this.iirphase; \
var po = this.phaseout = this.phaseout * 0.993 + diffphase; \
console.log( po ); \
if( po < 0.0 ) po += 1.0; \
if( po > 1.0 ) po -= 1.0; \
this.rbuffer[this.rbufferhead] = po; \
} \
this.rbufferhead = n; \
} \
console.log( this.iirphase ); \
}; \
}\
\