- Timestamp:
- Apr 16, 2005, 11:35:33 PM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/text_engine.cc
r3833 r3840 265 265 266 266 this->setSize(fontSize); 267 268 this->setFont(fontFile); 269 267 270 this->setStyle("c");//TTF_STYLE_NORMAL); 268 269 this->setFont(fontFile);270 271 271 272 272 this->setFastColor(r, g, b); -
orxonox/trunk/src/track_manager.cc
r3838 r3840 715 715 void TrackManager::joinV(unsigned int count, int* trackIDs) 716 716 { 717 TrackElement* tmpTrackElem; 718 for (int i = 0; i < count; i++) 719 if (!this->firstTrackElem->findByID(trackIDs[i])) 720 { 721 PRINTF(1)("Error trying to Connect Paths that do not exist yet: %d\n Not Joining Anything", trackIDs[i]); 722 return; 723 } 724 725 717 726 PRINTF(3)("Joining %d tracks and merging to Track %d\n", count, trackIDs[0]); 718 727 719 728 // checking if there is a back-loop-connection and ERROR if it is. 720 TrackElement*tmpTrackElem = this->firstTrackElem->findByID(trackIDs[0]);729 tmpTrackElem = this->firstTrackElem->findByID(trackIDs[0]); 721 730 if (!tmpTrackElem->backLoopCheck(tmpTrackElem)) 722 731 {
Note: See TracChangeset
for help on using the changeset viewer.