summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2007-10-10 01:36:15 +0000
committerglx <glx@openttd.org>2007-10-10 01:36:15 +0000
commit1ff0197ca406eb1eb197a18a5a8e525f9c0f28bc (patch)
tree88f3259654def2962bd0ac62c9280b6166da94c7 /src
parent81ed86477bc3856039ed7b0a9e0f3b644246a254 (diff)
downloadopenttd-1ff0197ca406eb1eb197a18a5a8e525f9c0f28bc.tar.xz
(svn r11243) -Fix: update waypoint signs when renaming a town
Diffstat (limited to 'src')
-rw-r--r--src/town_cmd.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index 5b6a06a90..7771e541b 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -42,6 +42,7 @@
#include "newgrf_townname.h"
#include "misc/autoptr.hpp"
#include "autoslope.h"
+#include "waypoint.h"
/* Initialize the town-pool */
DEFINE_OLD_POOL_GENERIC(Town, Town)
@@ -1899,6 +1900,7 @@ CommandCost CmdRenameTown(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
UpdateTownVirtCoord(t);
_town_sort_dirty = true;
UpdateAllStationVirtCoord();
+ UpdateAllWaypointSigns();
MarkWholeScreenDirty();
} else {
DeleteName(str);