diff options
author | frosch <frosch@openttd.org> | 2008-08-20 19:53:42 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-08-20 19:53:42 +0000 |
commit | ff749ab09dec34ba928338a08c16dc0d04f00e11 (patch) | |
tree | 87c3a102df0ae61ce4eeb9bc3f5469fdf1493c45 /src | |
parent | f42fab0deccfd3b59c755dcb147a3c9592eb16e1 (diff) | |
download | openttd-ff749ab09dec34ba928338a08c16dc0d04f00e11.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.cpp | 2 |
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); } } |