summaryrefslogtreecommitdiff
path: root/src/viewport.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-08-04 14:40:50 +0000
committersmatz <smatz@openttd.org>2008-08-04 14:40:50 +0000
commit8fba4705f001343f3ab9bebd52d90cb2d7796ca4 (patch)
treeaa7931bd1701c352491660869d4ec0160a085f10 /src/viewport.cpp
parent0f109390299073f805846675a9be1fd710f8644f (diff)
downloadopenttd-8fba4705f001343f3ab9bebd52d90cb2d7796ca4.tar.xz
(svn r13991) -Codechange: draw text effects after all other signs
Diffstat (limited to 'src/viewport.cpp')
-rw-r--r--src/viewport.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/viewport.cpp b/src/viewport.cpp
index d6ab2eef9..552ccf177 100644
--- a/src/viewport.cpp
+++ b/src/viewport.cpp
@@ -1471,13 +1471,14 @@ void ViewportDoDraw(const ViewPort *vp, int left, int top, int right, int bottom
ViewportAddLandscape();
ViewportAddVehicles(&_vd.dpi);
- DrawTextEffects(&_vd.dpi);
ViewportAddTownNames(&_vd.dpi);
ViewportAddStationNames(&_vd.dpi);
ViewportAddSigns(&_vd.dpi);
ViewportAddWaypoints(&_vd.dpi);
+ DrawTextEffects(&_vd.dpi);
+
if (_vd.tile_sprites_to_draw.Length() != 0) ViewportDrawTileSprites(&_vd.tile_sprites_to_draw);
ParentSpriteToDraw *psd_end = _vd.parent_sprites_to_draw.End();