mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 13:05:11 +00:00
Merge branch 'master' of github.com:tildearrow/furnace
This commit is contained in:
commit
c006a09c54
1 changed files with 7 additions and 0 deletions
|
@ -2423,6 +2423,13 @@ void DivEngine::stepOne(int row) {
|
||||||
void DivEngine::stop() {
|
void DivEngine::stop() {
|
||||||
BUSY_BEGIN;
|
BUSY_BEGIN;
|
||||||
freelance=false;
|
freelance=false;
|
||||||
|
if (!playing) {
|
||||||
|
//Send midi panic
|
||||||
|
if (output) if (output->midiOut!=NULL) {
|
||||||
|
output->midiOut->send(TAMidiMessage(TA_MIDI_CONTROL,0x7B,0));
|
||||||
|
logV("Midi panic sent");
|
||||||
|
}
|
||||||
|
}
|
||||||
playing=false;
|
playing=false;
|
||||||
extValuePresent=false;
|
extValuePresent=false;
|
||||||
endOfSong=false; // what?
|
endOfSong=false; // what?
|
||||||
|
|
Loading…
Reference in a new issue