LancePutnam / Gamma

Generic (Sound) Synthesis Library
Other
458 stars 54 forks source link

Fixed a Multitap linking bug. Added freq() to Multitap. #25

Closed mhetrick closed 10 years ago

mhetrick commented 10 years ago

When declaring Multitap as a pointer (i.e. Multitap<> *delay), an error was thrown during compilation. adding "this->" before mIpol() fixes it. I've also added in a freq() method for individual taps in Multitap.

LancePutnam commented 10 years ago

Thanks. Perhaps the first argument to freq should be something like 'value' or 'amount' rather than 'length'?

mhetrick commented 10 years ago

Good point! I just changed it to "v" to be consistent with Delay.freq(float v).