| 76 | } |
| 77 | |
| 78 | void VelocityStepSequencer::SetMidiController(std::string name) |
| 79 | { |
| 80 | if (mController) |
| 81 | mController->RemoveListener(this); |
| 82 | mController = TheSynth->FindMidiController(name); |
| 83 | if (mController) |
| 84 | mController->AddListener(this, 0); |
| 85 | } |
| 86 | |
| 87 | void VelocityStepSequencer::DrawModule() |
| 88 | { |
nothing calls this directly
no test coverage detected