1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed some coverity warnings.

This commit is contained in:
jules 2013-06-17 22:10:57 +01:00
parent e05393c36d
commit 01e3e4c40c
19 changed files with 74 additions and 54 deletions

View file

@ -73,10 +73,9 @@ bool SamplerSound::appliesToChannel (const int /*midiChannel*/)
SamplerVoice::SamplerVoice()
: pitchRatio (0.0),
sourceSamplePosition (0.0),
lgain (0.0f),
rgain (0.0f),
isInAttack (false),
isInRelease (false)
lgain (0.0f), rgain (0.0f),
attackReleaseLevel (0), attackDelta (0), releaseDelta (0),
isInAttack (false), isInRelease (false)
{
}