Added code for enabling compressor of Synth_Dexed (with default values).

pull/59/head
Holger Wirtz 3 years ago
parent 37ab680013
commit 0018120e86
  1. 2
      Synth_Dexed
  2. 5
      src/dexedadapter.h

@ -1 +1 @@
Subproject commit 19cb794fc392776bcdf0fcecd5d27d6d2ae33a22
Subproject commit 70293ae5998643c706244b090504dde8b4097851

@ -34,7 +34,10 @@ public:
: Dexed (maxnotes, rate)
{
Dexed::setCompressor(true);
printf("Dexed-Compressor: %d",Dexed::compressorEnabled());
if(Dexed::getCompressor()==true)
printf("Dexed-Compressor: enabled\n");
else
printf("Dexed-Compressor: disabled\n");
}
void loadVoiceParameters (uint8_t* data)

Loading…
Cancel
Save