oh yes more MIDI work

This commit is contained in:
tildearrow 2022-03-28 15:24:09 -05:00
parent d8328e91a7
commit 08910d37b2
4 changed files with 33 additions and 16 deletions

View file

@ -2628,6 +2628,11 @@ bool FurnaceGUI::init() {
firstFrame=true;
// TODO
e->setMidiCallback([this](const TAMidiMessage& msg) -> bool {
return true;
});
return true;
}
@ -2907,4 +2912,4 @@ FurnaceGUI::FurnaceGUI():
memset(patChanX,0,sizeof(float)*(DIV_MAX_CHANS+1));
memset(patChanSlideY,0,sizeof(float)*(DIV_MAX_CHANS+1));
memset(lastIns,-1,sizeof(int)*DIV_MAX_CHANS);
}
}