Porting error in renderer custom LS output
# Basic info <!--- Add commit SHA used to reproduce --> - Renderer (fixed): 496d928d46719161bc5c05600fc4de510d684e6e # Bug description There is a reversal of condition in function makeCustomLsSetup(). BASOP ```c FOR( i = 0; i < rendCustomLsLayout.num_spk; ++i ) { IF( LT_32( L_abs( rendCustomLsLayout.elevation_fx[i] ), EPSILON_FX ) ) { customLs.is_planar_setup = 0; move16(); BREAK; } } ``` Float ```c for ( i = 0; i < rendCustomLsLayout.num_spk; ++i ) { if ( fabsf( rendCustomLsLayout.elevation[i] ) > EPSILON ) { customLs.is_planar_setup = 0; break; } } ``` <!--- Below are labels that will be added but are not shown in description. This is a template to help fill them. Add further information to the first row and remove and add labels as necessary. -->
issue