Changeset 9903 in orxonox.OLD for branches/network/src
- Timestamp:
- Oct 27, 2006, 9:22:50 AM (18 years ago)
- Location:
- branches/network/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/story_entities/multi_player_world_data.cc
r9869 r9903 149 149 BaseObject* created = Factory::fabricate(element); 150 150 if( created != NULL ) 151 PRINTF(1)("Created a %s: %s (0x%8x) from %s\n", created->getClassCName(), created->getCName(), created->getLeafClassID(), element->Value());151 PRINTF(1)("Created a %s: %s (0x%8x) from %s\n", created->getClassCName(), created->getCName(), (int)created->getLeafClassID().id(), element->Value()); 152 152 else 153 153 PRINTF(1)("NetworkWorld: could not create this entity\n"); … … 180 180 181 181 if( created != NULL ) 182 PRINTF(1)("Created a %s: %s (0x%8x) from %s\n", created->getClassCName(), created->getCName(), created->getLeafClassID() , element->Value());182 PRINTF(1)("Created a %s: %s (0x%8x) from %s\n", created->getClassCName(), created->getCName(), created->getLeafClassID().id(), element->Value()); 183 183 else 184 184 PRINTF(1)("NetworkWorld: could not create this entity\n"); -
branches/network/src/util/signal_handler.cc
r9406 r9903 42 42 catchSignal( SIGSEGV ); 43 43 catchSignal( SIGABRT ); 44 catchSignal( SIGILL ); 44 45 } 45 46 … … 94 95 case SIGABRT: 95 96 sigName = "SIGABRT"; 97 break; 98 case SIGILL: 99 sigName = "SIGILL"; 96 100 break; 97 101 }
Note: See TracChangeset
for help on using the changeset viewer.