Admin message

WARNING! Gitlab maintenance operation scheduled for Monday, 20 April between 12:00 and 14:00 (CET). During this time window, short service interruptions (less than 5 minutes) may occur. Thank you in advance for your understanding.

Porting error in renderer custom LS output

Basic info

  • Renderer (fixed): 496d928d

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 Apr 08, 2026 by Tapani Pihlajakuja
Assignee Loading
Time tracking Loading