Commit 5e68ab0a authored by malenovsky's avatar malenovsky
Browse files

Revert previous modification

parent 091a5f5d
Loading
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -126,13 +126,13 @@ static void scramble(LC3_FLOAT* re, LC3_FLOAT* im, LC3_INT n, LC3_INT s)
    LC3_FLOAT tmp;
    LC3_INT   m, k, j;

    for (m = 1, j = 0; m < (n - 1); m++) 
    for (m = 1, j = 0; m < (n - 1); m++) {
        {
            for (k = n >> 1; (!((j ^= k) & k)); k >>= 1)
        {}
                ;
        }

        if (j > m) 
        {
        if (j > m) {
            tmp       = re[s * m];
            re[s * m] = re[s * j];
            re[s * j] = tmp;