fixed warning in AtariNTSC.cxx

This commit is contained in:
thrust26 2018-08-19 22:22:05 +02:00
parent 6cd5c9d327
commit e425d8065f
1 changed files with 2 additions and 3 deletions

View File

@ -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 );
}