Changeset 12401 for trunk


Ignore:
Timestamp:
11/05/11 21:12:24 (13 years ago)
Author:
tbretz
Message:
Fixed the verbose screen output
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/ratecontrol.cc

    r12355 r12401  
    103103        for (int j=0; j<10; j++)
    104104        {
    105             for (int k=0; k<16; k+=4)
     105            for (int k=0; k<4; k++)
    106106            {
    107107                for (int i=0; i<4; i++)
    108                     if (fThresholds[j*k+i]!=300)
    109                         Out() << setw(3) << fThresholds[j*k+i] << " ";
     108                    if (fThresholds[i+k*4+j*16]!=300)
     109                        Out() << setw(3) << fThresholds[i+k*4+j*16] << " ";
    110110                    else
    111111                        Out() << " -  ";
Note: See TracChangeset for help on using the changeset viewer.