NotePlayHandle: fixed minor auto replace typo

This commit is contained in:
Tobias Doerffel
2014-01-26 00:58:37 +01:00
parent d2aab11130
commit 5808c8b786
2 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ notePlayHandle::notePlayHandle( InstrumentTrack * _it,
const note & _n,
notePlayHandle *parent,
const bool _part_of_arp,
int MidiEventChannel ) :
int midiEventChannel ) :
playHandle( NotePlayHandle, _offset ),
note( _n.length(), _n.pos(), _n.key(),
_n.getVolume(), _n.getPanning(), _n.detuning() ),
@@ -76,7 +76,7 @@ notePlayHandle::notePlayHandle( InstrumentTrack * _it,
m_unpitchedFrequency( 0 ),
m_baseDetuning( NULL ),
m_songGlobalParentOffset( 0 ),
m_midiChannel( MidiEventChannel >= 0 ? MidiEventChannel : instrumentTrack()->midiPort()->realOutputChannel() )
m_midiChannel( midiEventChannel >= 0 ? midiEventChannel : instrumentTrack()->midiPort()->realOutputChannel() )
{
if( isTopNote() )
{