mirror of
https://github.com/thestk/stk
synced 2026-01-17 06:41:51 +00:00
Added new versions of RtAudio and RtMidi, updated RtWvIn and RtWvOut for new API, updated demo project for new API.
This commit is contained in:
@@ -172,8 +172,8 @@ void BlowHole :: startBlowing( StkFloat amplitude, StkFloat rate )
|
||||
|
||||
void BlowHole :: stopBlowing( StkFloat rate )
|
||||
{
|
||||
if ( rate <= 0.0 ) {
|
||||
oStream_ << "BlowHole::stopBlowing: argument is less than or equal to zero!";
|
||||
if ( rate < 0.0 ) {
|
||||
oStream_ << "BlowHole::stopBlowing: argument is less than zero!";
|
||||
handleError( StkError::WARNING ); return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user