summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-07-13 22:33:25 +0000
committerrubidium <rubidium@openttd.org>2009-07-13 22:33:25 +0000
commite067d4a4b87d2c4b4fa92f24d241a88cb8432e38 (patch)
treef0528a4fd03a2b0bdb8ba6ddf08f48e76c4f0aac /src/station_cmd.cpp
parentdb63e1ad82537ea7b278c64b2a5383afd1bfbc5c (diff)
downloadopenttd-e067d4a4b87d2c4b4fa92f24d241a88cb8432e38.tar.xz
(svn r16821) -Codechange: unify the naming of type::UpdateVirtCoord and UpdateAll[Type]VirtCoords.
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index 890191682..a47655736 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -367,9 +367,7 @@ static Station *GetClosestDeletedStation(TileIndex tile)
}
/**
- * Update the virtual coords needed to draw the station sign and
- * mark the station sign dirty.
- * @ingroup dirty
+ * Update the virtual coords needed to draw the station sign.
*/
void Station::UpdateVirtCoord()
{
@@ -384,7 +382,7 @@ void Station::UpdateVirtCoord()
}
/** Update the virtual coords needed to draw the station sign for all stations. */
-void UpdateAllStationVirtCoord()
+void UpdateAllStationVirtCoords()
{
Station *st;