Skip to content

Commit

Permalink
Improve AudioEffectWaveshaper initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulStoffregen committed Jun 18, 2023
1 parent 012ec53 commit 5410a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion effect_waveshaper.h
Expand Up @@ -31,7 +31,7 @@
class AudioEffectWaveshaper : public AudioStream
{
public:
AudioEffectWaveshaper(void): AudioStream(1, inputQueueArray) {}
AudioEffectWaveshaper(void): AudioStream(1, inputQueueArray), waveshape(nullptr) {}
~AudioEffectWaveshaper();
virtual void update(void);
void shape(float* waveshape, int length);
Expand Down

0 comments on commit 5410a1f

Please sign in to comment.