- fixed master volume
- added osc jitter to blep waveform saw, square and tri
This commit is contained in:
@@ -610,10 +610,24 @@ void JaySynthAudioProcessor::processBlock (AudioSampleBuffer& buffer, MidiBuffer
|
||||
}
|
||||
|
||||
for (i=0; i <numSamples; i++)
|
||||
{
|
||||
buf1[i] = (float)(buf[0][i]*limiter_gain[i]);
|
||||
}
|
||||
|
||||
for (i=0; i <numSamples; i++)
|
||||
{
|
||||
buf2[i] = (float)(buf[1][i]*limiter_gain[i]);
|
||||
}
|
||||
#else
|
||||
for (i=0; i <numSamples; i++)
|
||||
{
|
||||
buf1[i] = (float)(buf[0][i]);
|
||||
}
|
||||
|
||||
for (i=0; i <numSamples; i++)
|
||||
{
|
||||
buf2[i] = (float)(buf[1][i]);
|
||||
}
|
||||
#endif
|
||||
|
||||
// In case we have more outputs than inputs, we'll clear any output
|
||||
|
||||
Reference in New Issue
Block a user