| 114 | bool playing() const { return _playing; } |
| 115 | void setTimerBaseValue( uint32 ticksPerSecond ) { _timerBase = ticksPerSecond; } |
| 116 | uint32 getTimerBaseValue() { return _timerBase; } |
| 117 | void setSingleInterrupt(unsigned int sampleDelay) { assert(sampleDelay < _intFreq); _curInt = sampleDelay; } |
| 118 | void setSingleInterruptUnscaled(unsigned int timerDelay) { |
| 119 | setSingleInterrupt((unsigned int)(((double)timerDelay * getRate()) / _timerBase)); |
nothing calls this directly
no outgoing calls
no test coverage detected