mirror of https://github.com/stella-emu/stella.git
fixed warnings
This commit is contained in:
parent
4e4b38d87a
commit
e26602354b
|
@ -79,9 +79,9 @@ LanczosResampler::LanczosResampler(
|
|||
myCurrentFragment(nullptr),
|
||||
myFragmentIndex(0),
|
||||
myIsUnderrun(true),
|
||||
myHighPassL(HIGH_PASS_CUT_OFF, formatFrom.sampleRate),
|
||||
myHighPassR(HIGH_PASS_CUT_OFF, formatFrom.sampleRate),
|
||||
myHighPass(HIGH_PASS_CUT_OFF, formatFrom.sampleRate),
|
||||
myHighPassL(HIGH_PASS_CUT_OFF, (float)formatFrom.sampleRate),
|
||||
myHighPassR(HIGH_PASS_CUT_OFF, (float)formatFrom.sampleRate),
|
||||
myHighPass(HIGH_PASS_CUT_OFF, (float)formatFrom.sampleRate),
|
||||
myTimeIndex(0)
|
||||
{
|
||||
myPrecomputedKernels = make_unique<float[]>(myPrecomputedKernelCount * myKernelSize);
|
||||
|
|
Loading…
Reference in New Issue