small tweak

This commit is contained in:
Bob 2012-11-08 21:20:19 +01:00
parent 4d4f7c585c
commit c7e683ac29
2 changed files with 18 additions and 7 deletions

View file

@ -89,7 +89,7 @@ void Cfft::ApplyWindow()
float* out = m_fftin;
while (in != inend)
*(out++) = *(in++);// * *(window++);
*(out++) = *(in++) * *(window++);
}
void Cfft::AddSample(float sample)