Browse Source

Misc

tags/1.9.4
falkTX 12 years ago
parent
commit
9e7d64142a
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      source/backend/native/zynaddsubfx.cpp

+ 6
- 6
source/backend/native/zynaddsubfx.cpp View File

@@ -571,8 +571,8 @@ public:

FxAlienWahPlugin(const HostDescriptor* const host)
: PluginDescriptorClass(host),
efxoutl(new float[getBufferSize()]),
efxoutr(new float[getBufferSize()]),
efxoutl(new float[synth->buffersize]),
efxoutr(new float[synth->buffersize]),
fEffect(false, efxoutl, efxoutr)
{
}
@@ -780,8 +780,8 @@ public:

FxChorusPlugin(const HostDescriptor* const host)
: PluginDescriptorClass(host),
efxoutl(new float[getBufferSize()]),
efxoutr(new float[getBufferSize()]),
efxoutl(new float[synth->buffersize]),
efxoutr(new float[synth->buffersize]),
fEffect(false, efxoutl, efxoutr)
{
}
@@ -1014,8 +1014,8 @@ public:

FxReverbPlugin(const HostDescriptor* const host)
: PluginDescriptorClass(host),
efxoutl(new float[getBufferSize()]),
efxoutr(new float[getBufferSize()]),
efxoutl(new float[synth->buffersize]),
efxoutr(new float[synth->buffersize]),
fEffect(false, efxoutl, efxoutr)
{
}


Loading…
Cancel
Save