- Timestamp:
- Jan 24, 2007, 2:34:09 AM (18 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/graphics_engine.cc
r9876 r10320 633 633 if (this->geTextCFPS == NULL) 634 634 { 635 this->geTextCFPS = new Text("fonts/ arial_black.ttf", 15);635 this->geTextCFPS = new Text("fonts/final_frontier.ttf", 15); 636 636 this->geTextCFPS->setName("curFPS"); 637 637 this->geTextCFPS->setAlignment(TEXT_ALIGN_LEFT); … … 640 640 if (this->geTextMaxFPS == NULL) 641 641 { 642 this->geTextMaxFPS = new Text("fonts/ arial_black.ttf", 15);642 this->geTextMaxFPS = new Text("fonts/final_frontier.ttf", 15); 643 643 this->geTextMaxFPS->setName("MaxFPS"); 644 644 this->geTextMaxFPS->setAlignment(TEXT_ALIGN_LEFT); … … 647 647 if (this->geTextMinFPS == NULL) 648 648 { 649 this->geTextMinFPS = new Text("fonts/ arial_black.ttf", 15);649 this->geTextMinFPS = new Text("fonts/final_frontier.ttf", 15); 650 650 this->geTextMinFPS->setName("MinFPS"); 651 651 this->geTextMinFPS->setAlignment(TEXT_ALIGN_LEFT); -
trunk/src/lib/network/monitor/network_stats_widget.cc
r9869 r10320 56 56 { 57 57 if(_font == NULL) 58 _font = new Font(Resources::ResourceManager::getInstance()->mainGlobalPath().name() + "/fonts/ arial.ttf", 20);58 _font = new Font(Resources::ResourceManager::getInstance()->mainGlobalPath().name() + "/fonts/final_frontier.ttf", 20); 59 59 60 60 //this->_name.setFont(*_font); -
trunk/src/util/track/track_manager.cc
r9406 r10320 379 379 this->setBindSlave(this->trackNode); 380 380 // initializing the Text 381 this->trackText = new Text("fonts/ earth.ttf", 30);381 this->trackText = new Text("fonts/final_frontier.ttf", 30); 382 382 this->trackText->setAlignment(E2D_ALIGN_SCREEN_CENTER); 383 383 // initializing the Animation for the Text. -
trunk/src/world_entities/elements/text_element.cc
r10114 r10320 44 44 45 45 this->setSize(20); 46 this->setFont("fonts/ earth.ttf");46 this->setFont("fonts/final_frontier.ttf"); 47 47 this->setAlignment(TEXT_ALIGN_CENTER); 48 48
Note: See TracChangeset
for help on using the changeset viewer.