From e03aa486dd0d7380748c662bf37e5bdb6206fa8d Mon Sep 17 00:00:00 2001 From: rhenninger Date: Sun, 11 Sep 2016 13:51:10 -0400 Subject: [PATCH] redirect non-conforming writes to cerr to oStream_ One error message was going to cerr instead of oStream_ in resonate.cpp --- src/Resonate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resonate.cpp b/src/Resonate.cpp index 4827752..a548ffb 100644 --- a/src/Resonate.cpp +++ b/src/Resonate.cpp @@ -56,7 +56,7 @@ void Resonate :: setResonance( StkFloat frequency, StkFloat radius ) } if ( radius < 0.0 || radius >= 1.0 ) { - std::cerr << "Resonate::setResonance: radius parameter is out of range!"; + oStream_ << "Resonate::setResonance: radius parameter is out of range!"; handleError( StkError::WARNING ); return; }