Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 2:48:32 PM (15 years ago)
Author:
rgrieder
Message:

Renamed stupid omni_cast to multi_cast. It still eats about anything ;)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/overlays/stats/Scoreboard.cc

    r3110 r3125  
    101101        for (std::map<PlayerInfo*, Player>::const_iterator it = playerList.begin(); it != playerList.end(); ++it)
    102102        {
    103             this->lines_[index]->setPlayerName(omni_cast<std::string>(it->first->getName()));
    104             this->lines_[index]->setScore(omni_cast<std::string>(it->second.frags_));
    105             this->lines_[index]->setDeaths(omni_cast<std::string>(it->second.killed_));
     103            this->lines_[index]->setPlayerName(multi_cast<std::string>(it->first->getName()));
     104            this->lines_[index]->setScore(multi_cast<std::string>(it->second.frags_));
     105            this->lines_[index]->setDeaths(multi_cast<std::string>(it->second.killed_));
    106106            index++;
    107107        }
Note: See TracChangeset for help on using the changeset viewer.