| 687 | } |
| 688 | |
| 689 | void ScriptModule::SendCCFromScript(int control, int value, int noteOutputIndex) |
| 690 | { |
| 691 | if (noteOutputIndex == 0) |
| 692 | { |
| 693 | SendCC(control, value); |
| 694 | return; |
| 695 | } |
| 696 | |
| 697 | if (noteOutputIndex - 1 < (int)mExtraNoteOutputs.size()) |
| 698 | { |
| 699 | mExtraNoteOutputs[noteOutputIndex - 1]->SendCCOutput(control, value); |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | void ScriptModule::ScheduleNote(double time, float pitch, float velocity, float pan, int noteOutputIndex) |
| 704 | { |
nothing calls this directly
no test coverage detected