From 71103a71ba70ba8b4150c9fcc70f1ebb16339240 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Tue, 18 Feb 2014 20:24:36 +0100 Subject: [PATCH] VeSTige: adapt rename of MidiMaxKey constant --- plugins/vestige/vestige.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vestige/vestige.cpp b/plugins/vestige/vestige.cpp index 20729675a..31a262771 100644 --- a/plugins/vestige/vestige.cpp +++ b/plugins/vestige/vestige.cpp @@ -776,7 +776,7 @@ void VestigeInstrumentView::noteOffAll( void ) m_vi->m_pluginMutex.lock(); if( m_vi->m_plugin != NULL ) { - for( int key = 0; key <= MidiMaxNote; ++key ) + for( int key = 0; key <= MidiMaxKey; ++key ) { m_vi->m_plugin->processMidiEvent( MidiEvent( MidiNoteOff, 0, key, 0 ), 0 ); }