Ejemplo n.º 1
0
void CtrlrPanel::sendMidi (CtrlrMidiMessage &m, double millisecondCounterToStartAt)
{
	if (outputDevice)
	{
		if (millisecondCounterToStartAt == -1)
			outputDevice->sendMidiBuffer (m.getMidiBuffer(), globalMidiDelay);
		else
			outputDevice->sendMidiBuffer (m.getMidiBuffer(), millisecondCounterToStartAt);
	}
}