default-initialize EqFilter parameters to 0

This commit is contained in:
Colin Wallace
2015-07-04 01:29:04 +00:00
parent fea942e05d
commit bc3e17eff8

View File

@@ -38,7 +38,12 @@
class EqFilter : public StereoBiQuad
{
public:
EqFilter()
EqFilter() :
m_sampleRate(0),
m_freq(0),
m_res(0),
m_gain(0),
m_bw(0)
{
}