mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 10:47:34 +01:00
another dumb macos fix
This commit is contained in:
parent
fd5970b35a
commit
927bbab330
@ -20,7 +20,7 @@ namespace dsp::taps {
|
||||
taps.taps[i] = math::sinc(t * omega) * window(t - half, count) * corr;
|
||||
}
|
||||
if constexpr (std::is_same_v<T, complex_t>) {
|
||||
complex_t cplx = { math::sinc(t * omega), 0.0f };
|
||||
complex_t cplx = { (float)math::sinc(t * omega), 0.0f };
|
||||
taps.taps[i] = cplx * window(t - half, count) * corr;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user