Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 25, 2009, 12:06:15 AM (14 years ago)
Author:
rgrieder
Message:

Fixed a bug in Shell and changed parental order in InGameConsole.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/libraries/core/Shell.cc

    r6105 r6139  
    265265            {
    266266                if (this->bPrependOutputLevel_)
    267                     output.insert(0, 1, static_cast<char>(level));
     267                {
     268                    if (level == 0)
     269                        output.insert(0, 1, static_cast<char>(-1));
     270                    else
     271                        output.insert(0, 1, static_cast<char>(level));
     272                }
    268273
    269274                this->outputLines_.push_front(output);
Note: See TracChangeset for help on using the changeset viewer.