summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-08-20 19:53:42 +0000
committerfrosch <frosch@openttd.org>2008-08-20 19:53:42 +0000
commit378782b3ed16d02164448360a2f531d49f1bc5a0 (patch)
tree87c3a102df0ae61ce4eeb9bc3f5469fdf1493c45 /src
parentdde40c53ed31ea91b1740bf250e66bbe69bef565 (diff)
downloadopenttd-378782b3ed16d02164448360a2f531d49f1bc5a0.tar.xz
(svn r14114) -Fix [FS#2242]: Sign list was not properly updated on removal of signs.
Diffstat (limited to 'src')
-rw-r--r--src/signs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/signs.cpp b/src/signs.cpp
index b514e2ab1..a2d3141b5 100644
--- a/src/signs.cpp
+++ b/src/signs.cpp
@@ -157,7 +157,7 @@ CommandCost CmdRenameSign(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
MarkSignDirty(si);
delete si;
- InvalidateWindowData(WC_SIGN_LIST, 0, 1);
+ InvalidateWindowData(WC_SIGN_LIST, 0, 0);
}
}