- Timestamp:
- Jun 9, 2009, 2:48:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/overlays/stats/Scoreboard.cc
r3110 r3125 101 101 for (std::map<PlayerInfo*, Player>::const_iterator it = playerList.begin(); it != playerList.end(); ++it) 102 102 { 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_)); 106 106 index++; 107 107 }
Note: See TracChangeset
for help on using the changeset viewer.