Skip to content

Commit

Permalink
Fix wrong condition
Browse files Browse the repository at this point in the history
  • Loading branch information
PhysSong authored Oct 22, 2017
1 parent 2cb62a4 commit 6ad5b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/InstrumentSoundShaping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ f_cnt_t InstrumentSoundShaping::releaseFrames() const

f_cnt_t ret_val = m_instrumentTrack->instrument()->desiredReleaseFrames();

if( !m_instrumentTrack->instrument()->flags().testFlag( Instrument::IsSingleStreamed ) )
if( m_instrumentTrack->instrument()->flags().testFlag( Instrument::IsSingleStreamed ) )
{
return ret_val;
}
Expand Down

0 comments on commit 6ad5b0b

Please sign in to comment.