Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9863 in orxonox.OLD for branches/new_class_id/src/story_entities


Ignore:
Timestamp:
Oct 2, 2006, 4:53:38 PM (18 years ago)
Author:
bensch
Message:

less debug output

Location:
branches/new_class_id/src/story_entities
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/story_entities/game_world.cc

    r9833 r9863  
    151151
    152152
    153   PRINTF(0)("Loading the GameWorld\n");
     153  PRINTF(4)("Loading the GameWorld\n");
    154154
    155155  PRINTF(3)("> Loading world: '%s'\n", getLoadFile().c_str());
     
    336336  }
    337337
    338   PRINTF(0)("GameWorld::mainLoop() - Exiting the main loop\n");
     338  PRINTF(4)("GameWorld::mainLoop() - Exiting the main loop\n");
    339339}
    340340
  • branches/new_class_id/src/story_entities/menu/game_menu.cc

    r9856 r9863  
    199199        {
    200200
    201           printf("%s\n", se->getMenuScreenshoot().c_str());
     201          PRINTF(3)("Load image %s\n", se->getMenuScreenshoot().c_str());
    202202          OrxGui::GLGuiImageButton* button = new OrxGui::GLGuiImageButton(se->getName(), se->getStoryID(), se->getMenuScreenshoot(), image);
    203203          button->startLevel.connect(this, &GameMenu::startLevel);
  • branches/new_class_id/src/story_entities/menu/glgui_imagebutton.cc

    r9406 r9863  
    1414*/
    1515
    16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_SHELL
    1716
    1817#include "glgui_imagebutton.h"
     
    4544  void GLGuiImageButton::receivedFocus()
    4645  {
    47     printf("%s:: %s\n", this->label().c_str(), this->imageName.c_str());
     46    PRINTF(4)("%s:: %s\n", this->label().c_str(), this->imageName.c_str());
    4847
    4948    this->image->loadImageFromFile(this->imageName);
Note: See TracChangeset for help on using the changeset viewer.