Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5092 in orxonox.OLD


Ignore:
Timestamp:
Aug 21, 2005, 10:17:47 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: less output, and shell also outputs to shell if debug-mode ≥3

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/graphics_engine.cc

    r5089 r5092  
    411411{
    412412  NullElement2D::getInstance()->update2D(dt);
    413   NullElement2D::getInstance()->debug(0);
    414 
    415413}
    416414
  • trunk/src/util/shell.cc

    r5090 r5092  
    132132  va_start(arguments, line);
    133133
    134 #if DEBUG > 3
     134#if DEBUG < 3
    135135  if (Shell::singletonRef == NULL)
    136136#endif
    137137
    138138  vprintf(line, arguments);
    139 #if DEBUG > 3
     139#if DEBUG < 3
    140140  else
     141#else
     142  if (Shell::singletonRef != NULL)
    141143#endif
    142144    Shell::singletonRef->addBufferLine(line, arguments);
Note: See TracChangeset for help on using the changeset viewer.