| 124 | } |
| 125 | void clearVoice(uint8 voice); |
| 126 | void clearVoices() { for (int i = 0; i < NUM_VOICES; ++i) clearVoice(i); } |
| 127 | void startPlay() { filterResetState(); _playing = true; } |
| 128 | void stopPlay() { _playing = false; } |
| 129 | void pausePlay(bool pause) { _playing = !pause; } |
nothing calls this directly
no outgoing calls
no test coverage detected