Commit 11daea25 authored by Fabian Bauer's avatar Fabian Bauer
Browse files

bugfix

parent b7b4c527
Loading
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2341,8 +2341,6 @@ void FdCng_decodeSID_fx( Decoder_State *corest )
    // gain = ((float)index - gain_q_offset) / 1.5f;
    {
        /* format gain: Q9.23 */
        Word32 gain_q_offset = GAIN_Q_OFFSET_EVS_FX_Q0; /*60 Q0*/
        move32();
        gain = L_shl( L_deposit_l( index ), WORD32_BITS - 1 - 8 );
        gain = L_sub( gain, L_shl( gain_q_offset, 23 ) /*60.0 Q23*/ ); /*Q23*/
        gain = Mpy_32_16_1( gain, 21845 /*2.0f/3.0f Q15*/ );           /*Q23*/