Merge pull request #15 from arielelkin/fix-variable-types-in-TapDelay

Fix variable types in tap delay
This commit is contained in:
garyscavone
2014-04-07 10:07:22 -04:00
2 changed files with 9 additions and 5 deletions

View File

@@ -72,7 +72,7 @@ void TapDelay :: setTapDelays( std::vector<unsigned long> taps )
if ( taps.size() != outPoint_.size() ) {
outPoint_.resize( taps.size() );
delays_.resize( taps.size() );
lastFrame_.resize( 1, taps.size(), 0.0 );
lastFrame_.resize( 1, (unsigned int)taps.size(), 0.0 );
}
for ( unsigned int i=0; i<taps.size(); i++ ) {