From 89b51b178461b278b54b0fcc4670f974dfc194dd Mon Sep 17 00:00:00 2001 From: Christoph Guttandin Date: Tue, 23 Jul 2024 18:27:15 +0200 Subject: [PATCH] Remove options from processor of Bitcrusher example (#2492) --- index.bs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.bs b/index.bs index 952830d46..1e38c5726 100644 --- a/index.bs +++ b/index.bs @@ -12197,10 +12197,8 @@ class Bitcrusher extends AudioWorkletProcessor { }]; } - constructor (options) { - // The initial parameter value can be set by passing |options| - // to the processor's constructor. - super(options); + constructor () { + super(); this._phase = 0; this._lastSampleValue = 0; }