diff --git a/src/common/tv_filters/AtariNTSC.cxx b/src/common/tv_filters/AtariNTSC.cxx index 7f5950003..7abe3b9b3 100644 --- a/src/common/tv_filters/AtariNTSC.cxx +++ b/src/common/tv_filters/AtariNTSC.cxx @@ -369,9 +369,8 @@ void AtariNTSC::init(init_t& impl, const Setup& setup) *out++ = i * s + q * c; } while ( --n2 ); - if constexpr( burst_count <= 1 ) - break; - ROTATE_IQ( s, c, 0.866025f, -0.5f ); /* +120 degrees */ + if constexpr( burst_count > 1 ) + ROTATE_IQ( s, c, 0.866025f, -0.5f ); /* +120 degrees */ } while ( --n ); }