Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 23, 2007, 7:19:07 PM (17 years ago)
Author:
landauf
Message:

changed \n to std::endl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/loader/LevelLoader.cc

    r663 r677  
    136136        mLoadOverlay->show();
    137137
    138         COUT(0) << "\n\n\nThis is Orxonox\nthe hottest 3D action shooter ever to exist\n\n\n";
    139         COUT(0) << "Level: " << name() << "\nDescription:" << description() << "\nImage:"<<image()<<"\n\n\n";
    140         COUT(4) << "Backgroundcolor: " << loadingBackgroundColor_ << "\nBackgroundimage:" << loadingBackgroundImage_ << "\n\n\n";
     138        COUT(0) << "This is Orxonox" << std::endl;
     139        COUT(0) << "the hottest 3D action shooter ever to exist" << std::endl;
     140        COUT(0) << "Level: " << name() << std::endl << "Description:" << description() << std::endl << "Image:" << image() << std::endl;
     141        COUT(4) << "Backgroundcolor: " << loadingBackgroundColor_ << std::endl << "Backgroundimage:" << loadingBackgroundImage_ << std::endl;
    141142
    142143      }
     
    162163              if (elemVal == "ogg")
    163164              {
    164         COUT(0) << "Adding sound "<< tElem->Attribute("src") << "\n\n\n";
     165                COUT(3) << "Adding sound "<< tElem->Attribute("src") << std::endl;
    165166
    166167                auMan->ambientAdd(tElem->Attribute("src"));
     
    186187            if (id)
    187188            {
    188                           orxonox::BaseObject* obj = id->fabricate();
    189                           obj->loadParams(tElem);
     189              orxonox::BaseObject* obj = id->fabricate();
     190              obj->loadParams(tElem);
    190191            }
    191192            else
    192193            {
    193                 COUT(2) << "Warning: '"<< tElem->Value() <<"' is not a valid classname.\n";
     194                COUT(2) << "Warning: '"<< tElem->Value() <<"' is not a valid classname." << std::endl;
    194195            }
    195196          }
     
    203204
    204205
    205       COUT(0) << "Loading finished!\n\n\n\n\n";
     206      COUT(0) << "Loading finished!" << std::endl << std::endl;
    206207    }
    207208  }
Note: See TracChangeset for help on using the changeset viewer.