parent
4deb0041f5
commit
91bddb8df6
4 changed files with 23 additions and 0 deletions
|
|
@ -497,6 +497,7 @@ class DivEngine {
|
|||
short effectSlotMap[4096];
|
||||
int midiBaseChan;
|
||||
bool midiPoly;
|
||||
bool midiDebug;
|
||||
size_t midiAgeCounter;
|
||||
|
||||
blip_buffer_t* samp_bb;
|
||||
|
|
@ -1208,6 +1209,9 @@ class DivEngine {
|
|||
// send MIDI message
|
||||
bool sendMidiMessage(TAMidiMessage& msg);
|
||||
|
||||
// enable MIDI debug
|
||||
void setMidiDebug(bool enable);
|
||||
|
||||
// perform secure/sync operation
|
||||
void synchronized(const std::function<void()>& what);
|
||||
|
||||
|
|
@ -1329,6 +1333,7 @@ class DivEngine {
|
|||
cmdStreamInt(NULL),
|
||||
midiBaseChan(0),
|
||||
midiPoly(true),
|
||||
midiDebug(false),
|
||||
midiAgeCounter(0),
|
||||
samp_bb(NULL),
|
||||
samp_bbInLen(0),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue