Porting error in renderer custom LS output

Basic info

Bug description

There is a reversal of condition in function makeCustomLsSetup().

BASOP

    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

    for ( i = 0; i < rendCustomLsLayout.num_spk; ++i )
    {
        if ( fabsf( rendCustomLsLayout.elevation[i] ) > EPSILON )
        {
            customLs.is_planar_setup = 0;
            break;
        }
    }
Edited by Tapani Pihlajakuja