| 76 | } |
| 77 | |
| 78 | void NoteRouter::PlayNote(double time, int pitch, int velocity, int voiceIdx, ModulationParameters modulation) |
| 79 | { |
| 80 | for (int i = 0; i < (int)mDestinationCables.size(); ++i) |
| 81 | { |
| 82 | if (IsIndexActive(i)) |
| 83 | { |
| 84 | mDestinationCables[i]->PlayNoteOutput(time, pitch, velocity, voiceIdx, modulation); |
| 85 | } |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | void NoteRouter::RadioButtonUpdated(RadioButton* radio, int oldVal, double time) |
| 90 | { |
nothing calls this directly
no test coverage detected