| 415 | // _voices[], therefore notes playing on different channels could conflict. |
| 416 | |
| 417 | bool |
| 418 | VoiceAllocationUnit::shouldPlayNote (int note) const |
| 419 | { |
| 420 | #ifdef WITH_MTS_ESP |
| 421 | if (!mtsEspDisabled && tuningMap.isDefault()) |
| 422 | return !MTS_ShouldFilterNote(mtsClient, note, 0); |
| 423 | #endif |
| 424 | return tuningMap.inActiveRange(note); |
| 425 | } |
| 426 | |
| 427 | double |
| 428 | VoiceAllocationUnit::noteToPitch (int note) const |
nothing calls this directly
no test coverage detected