Browse Source

Fix build

tags/2018-04-16
falkTX 9 years ago
parent
commit
1e38a2e0bc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ports/wolpertinger/source/synth.h

+ 2
- 2
ports/wolpertinger/source/synth.h View File

@@ -506,10 +506,10 @@ class wolp: public AudioProcessor,
careful not to block, and avoid any UI activity in the callback.
*/
virtual void handleNoteOff (MidiKeyboardState* source,
int midiChannel, int midiNoteNumber) override
int midiChannel, int midiNoteNumber, float velocity) override
{
// printf("MidiKeyboard noteOff isProcessing=%s\n", isProcessing? "true": "false");
noteOff(midiChannel, midiNoteNumber, 0.0f, true);
noteOff(midiChannel, midiNoteNumber, velocity, true);
}
protected:


Loading…
Cancel
Save