Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 20, 2011, 4:05:32 PM (13 years ago)
Author:
rgrieder
Message:

Added new output macro: DOUT. Use this instead of COUT(0) to produce temporary debug output.
If available, such output will be shown in vivid colours and with a "+++ " prefix.

Any occurrence of this macro in the trunk will be dealt with swiftly and painlessly (it's very easy to search for it).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/unity_build/src/orxonox/overlays/InGameConsole.cc

    r8515 r8522  
    590590                          colourBottom = ColourValue(0.90f, 0.90f, 0.90f, 1.00f); break;
    591591
     592        case Shell::TDebug:  colourTop = ColourValue(0.90f, 0.00f, 0.90f, 1.00f);
     593                          colourBottom = ColourValue(1.00f, 0.00f, 1.00f, 1.00f); break;
     594
    592595        default:             colourTop = ColourValue(0.90f, 0.90f, 0.90f, 1.00f);
    593596                          colourBottom = ColourValue(1.00f, 1.00f, 1.00f, 1.00f); break;
Note: See TracChangeset for help on using the changeset viewer.