diff options
author | rubidium <rubidium@openttd.org> | 2009-07-13 22:33:25 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-13 22:33:25 +0000 |
commit | e067d4a4b87d2c4b4fa92f24d241a88cb8432e38 (patch) | |
tree | f0528a4fd03a2b0bdb8ba6ddf08f48e76c4f0aac /src/waypoint.cpp | |
parent | db63e1ad82537ea7b278c64b2a5383afd1bfbc5c (diff) | |
download | openttd-e067d4a4b87d2c4b4fa92f24d241a88cb8432e38.tar.xz |
(svn r16821) -Codechange: unify the naming of type::UpdateVirtCoord and UpdateAll[Type]VirtCoords.
Diffstat (limited to 'src/waypoint.cpp')
-rw-r--r-- | src/waypoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/waypoint.cpp b/src/waypoint.cpp index f1ba662a0..853ddbebd 100644 --- a/src/waypoint.cpp +++ b/src/waypoint.cpp @@ -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(); } } |