(svn r16821) -Codechange: unify the naming of type::UpdateVirtCoord and UpdateAll[Type]VirtCoords.

This commit is contained in:
rubidium
2009-07-13 22:33:25 +00:00
parent db63e1ad82
commit e067d4a4b8
15 changed files with 51 additions and 53 deletions

View File

@@ -20,12 +20,12 @@ INSTANTIATE_POOL_METHODS(Waypoint)
/**
* Update all signs
*/
void UpdateAllWaypointSigns()
void UpdateAllWaypointVirtCoords()
{
Waypoint *wp;
FOR_ALL_WAYPOINTS(wp) {
UpdateWaypointSign(wp);
wp->UpdateVirtCoord();
}
}