Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 1, 2011, 4:37:38 PM (13 years ago)
Author:
landauf
Message:

Replaced COUT() with orxout() in tools and orxonox library. Requires quite some fine-tuning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/orxonox/gametypes/UnderAttack.cc

    r8327 r8809  
    7070        this->end(); //end gametype
    7171        std::string message("Ship destroyed! Team 0 has won!");
    72         COUT(0) << message << std::endl;
     72        orxout(level::message) << message << endl;
    7373        Host::Broadcast(message);
    7474        this->gameEnded_ = true;
     
    153153                this->end();
    154154                std::string message("Time is up! Team 1 has won!");
    155                 COUT(0) << message << std::endl;
     155                orxout(level::message) << message << endl;
    156156                Host::Broadcast(message);
    157157
     
    173173                const std::string& message = multi_cast<std::string>(timesequence_) + " seconds left!";
    174174/*
    175                 COUT(0) << message << std::endl;
     175                orxout(level::message) << message << endl;
    176176                Host::Broadcast(message);
    177177*/
Note: See TracChangeset for help on using the changeset viewer.