Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10320 in orxonox.OLD


Ignore:
Timestamp:
Jan 24, 2007, 2:34:09 AM (17 years ago)
Author:
patrick
Message:

fixed some more problems with the new repos

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/graphics_engine.cc

    r9876 r10320  
    633633    if (this->geTextCFPS == NULL)
    634634    {
    635       this->geTextCFPS = new Text("fonts/arial_black.ttf", 15);
     635      this->geTextCFPS = new Text("fonts/final_frontier.ttf", 15);
    636636      this->geTextCFPS->setName("curFPS");
    637637      this->geTextCFPS->setAlignment(TEXT_ALIGN_LEFT);
     
    640640    if (this->geTextMaxFPS == NULL)
    641641    {
    642       this->geTextMaxFPS = new Text("fonts/arial_black.ttf", 15);
     642      this->geTextMaxFPS = new Text("fonts/final_frontier.ttf", 15);
    643643      this->geTextMaxFPS->setName("MaxFPS");
    644644      this->geTextMaxFPS->setAlignment(TEXT_ALIGN_LEFT);
     
    647647    if (this->geTextMinFPS == NULL)
    648648    {
    649       this->geTextMinFPS = new Text("fonts/arial_black.ttf", 15);
     649      this->geTextMinFPS = new Text("fonts/final_frontier.ttf", 15);
    650650      this->geTextMinFPS->setName("MinFPS");
    651651      this->geTextMinFPS->setAlignment(TEXT_ALIGN_LEFT);
  • trunk/src/lib/network/monitor/network_stats_widget.cc

    r9869 r10320  
    5656{
    5757  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);
    5959
    6060  //this->_name.setFont(*_font);
  • trunk/src/util/track/track_manager.cc

    r9406 r10320  
    379379  this->setBindSlave(this->trackNode);
    380380  // initializing the Text
    381   this->trackText = new Text("fonts/earth.ttf", 30);
     381  this->trackText = new Text("fonts/final_frontier.ttf", 30);
    382382  this->trackText->setAlignment(E2D_ALIGN_SCREEN_CENTER);
    383383  // initializing the Animation for the Text.
  • trunk/src/world_entities/elements/text_element.cc

    r10114 r10320  
    4444
    4545  this->setSize(20);
    46   this->setFont("fonts/earth.ttf");
     46  this->setFont("fonts/final_frontier.ttf");
    4747  this->setAlignment(TEXT_ALIGN_CENTER);
    4848
Note: See TracChangeset for help on using the changeset viewer.