diff options
author | frosch <frosch@openttd.org> | 2009-06-08 15:44:11 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2009-06-08 15:44:11 +0000 |
commit | 8cbf116c6266d5b447b91f72623ceb82fe631d96 (patch) | |
tree | 143fbe696e02d981ebf1301f35649d7263ed62ca | |
parent | 53a711ede02e01391bd665721dfb5841a2c953f8 (diff) | |
download | openttd-8cbf116c6266d5b447b91f72623ceb82fe631d96.tar.xz |
(svn r16536) -Fix (r16535): W != S
-rw-r--r-- | src/viewport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/viewport.cpp b/src/viewport.cpp index b944a2aa4..bf3014bde 100644 --- a/src/viewport.cpp +++ b/src/viewport.cpp @@ -1785,7 +1785,7 @@ static void SetSelectionTilesDirty() static const int OVERLAY_WIDTH = 4; // part of selection sprites is drawn outside the selected area - /* For halftile foundations on SLOPE_STEEP_W the sprite extents some more towards the top */ + /* For halftile foundations on SLOPE_STEEP_S the sprite extents some more towards the top */ MarkAllViewportsDirty(l - OVERLAY_WIDTH, t - OVERLAY_WIDTH - TILE_HEIGHT, r + OVERLAY_WIDTH, b + OVERLAY_WIDTH); /* haven't we reached the topmost tile yet? */ |