Changeset 9863 in orxonox.OLD for branches/new_class_id/src/story_entities
- Timestamp:
- Oct 2, 2006, 4:53:38 PM (18 years ago)
- 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 151 151 152 152 153 PRINTF( 0)("Loading the GameWorld\n");153 PRINTF(4)("Loading the GameWorld\n"); 154 154 155 155 PRINTF(3)("> Loading world: '%s'\n", getLoadFile().c_str()); … … 336 336 } 337 337 338 PRINTF( 0)("GameWorld::mainLoop() - Exiting the main loop\n");338 PRINTF(4)("GameWorld::mainLoop() - Exiting the main loop\n"); 339 339 } 340 340 -
branches/new_class_id/src/story_entities/menu/game_menu.cc
r9856 r9863 199 199 { 200 200 201 printf("%s\n", se->getMenuScreenshoot().c_str());201 PRINTF(3)("Load image %s\n", se->getMenuScreenshoot().c_str()); 202 202 OrxGui::GLGuiImageButton* button = new OrxGui::GLGuiImageButton(se->getName(), se->getStoryID(), se->getMenuScreenshoot(), image); 203 203 button->startLevel.connect(this, &GameMenu::startLevel); -
branches/new_class_id/src/story_entities/menu/glgui_imagebutton.cc
r9406 r9863 14 14 */ 15 15 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_SHELL17 16 18 17 #include "glgui_imagebutton.h" … … 45 44 void GLGuiImageButton::receivedFocus() 46 45 { 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()); 48 47 49 48 this->image->loadImageFromFile(this->imageName);
Note: See TracChangeset
for help on using the changeset viewer.