diff --git a/plugins/sfxr/sfxr.cpp b/plugins/sfxr/sfxr.cpp index a64f19b5a..27cd287da 100644 --- a/plugins/sfxr/sfxr.cpp +++ b/plugins/sfxr/sfxr.cpp @@ -481,7 +481,10 @@ void sfxrInstrument::playNote( NotePlayHandle * _n, sampleFrame * _working_buffe delete[] pitchedBuffer; - instrumentTrack()->processAudioBuffer( _working_buffer, frameNum, NULL ); + applyRelease( _working_buffer, _n ); + + instrumentTrack()->processAudioBuffer( _working_buffer, frameNum, _n ); + }