From d9b2bf78c51cb2bfe04819e69e428b46f4b10eef Mon Sep 17 00:00:00 2001 From: terkhen Date: Sat, 27 Feb 2010 16:27:15 +0000 Subject: [PATCH] (svn r19276) -Fix [FS#3649](r19229): Newly built road stops were not always repainted. --- src/station_cmd.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 914685ad4e..90b4436613 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1760,6 +1760,8 @@ CommandCost CmdBuildRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, uin } else { MakeRoadStop(cur_tile, st->owner, st->index, rs_type, rts, ddir); } + + MarkTileDirtyByTile(cur_tile); } }