# HG changeset patch # User terkhen # Date 2010-02-27 16:27:15 # Node ID 18ea0ce1f33d3ab7c1c94d2b22175e20cd41549e # Parent 3efbea14e64e4573c0085f7144bd2501108fe85e (svn r19276) -Fix [FS#3649](r19229): Newly built road stops were not always repainted. diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1760,6 +1760,8 @@ CommandCost CmdBuildRoadStop(TileIndex t } else { MakeRoadStop(cur_tile, st->owner, st->index, rs_type, rts, ddir); } + + MarkTileDirtyByTile(cur_tile); } }