Skip to content

Commit

Permalink
Allow Reverb1 Room Size to Modulate (#16)
Browse files Browse the repository at this point in the history
It always cou,d just it cleared a buffer when you did improperly. So
now it doesn't clear that buffer any more.
  • Loading branch information
baconpaul authored Aug 30, 2023
1 parent bfd0e3f commit 3e0b59f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/sst/effects/Reverb1.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,10 @@ inline void Reverb1<FXConfig>::processBlock(float *__restrict dataL, float *__re

template <typename FXConfig> inline void Reverb1<FXConfig>::loadpreset(int id)
{
shape = id;
if (shape != id)
clear_buffers();

clear_buffers();
shape = id;

switch (id)
{
Expand Down

0 comments on commit 3e0b59f

Please sign in to comment.