Skip to content

Commit 4de4e6e

Browse files
jvntftherewasaguy
authored andcommitted
fixed reverb typo
1 parent 87e0e0b commit 4de4e6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reverb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ define(function (require) {
156156
var impulseR = impulse.getChannelData(1);
157157
var n, i;
158158
for (i = 0; i < length; i++) {
159-
n = this.reverse ? length - i : i;
159+
n = this._reverse ? length - i : i;
160160
impulseL[i] = (Math.random() * 2 - 1) * Math.pow(1 - n / length, decay);
161161
impulseR[i] = (Math.random() * 2 - 1) * Math.pow(1 - n / length, decay);
162162
}

0 commit comments

Comments
 (0)