summaryrefslogtreecommitdiff
path: root/texteff.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-31 18:57:24 +0000
committertruelight <truelight@openttd.org>2004-12-31 18:57:24 +0000
commitc748f6db570c15167bee55f8907003f2333a79ab (patch)
treed5f1d90b0c2c0315541e26c9c0bac1cfe02bfa48 /texteff.c
parentce480ec17fc8f6db7a7b83e69531b4640a281a8c (diff)
downloadopenttd-c748f6db570c15167bee55f8907003f2333a79ab.tar.xz
(svn r1312) -Add: Patch which is on by default: population in label of the town
-Fix: Expand town is a bit more agressive -Fix: Fixed a bug in growing algorithm
Diffstat (limited to 'texteff.c')
-rw-r--r--texteff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/texteff.c b/texteff.c
index 5e8730c4c..05c9fc189 100644
--- a/texteff.c
+++ b/texteff.c
@@ -281,7 +281,7 @@ void DrawTextEffects(DrawPixelInfo *dpi)
(int16)(dpi->left + dpi->width) <= te->x ||
(int16)(dpi->top + dpi->height) <= te->y)
continue;
- AddStringToDraw(te->x, te->y, te->string_id, te->params_1, te->params_2);
+ AddStringToDraw(te->x, te->y, te->string_id, te->params_1, te->params_2, 0);
}
} else if (dpi->zoom == 1) {
for (te = _text_effect_list; te != endof(_text_effect_list); te++ ) {
@@ -294,7 +294,7 @@ void DrawTextEffects(DrawPixelInfo *dpi)
(dpi->left + dpi->width) <= te->x ||
(dpi->top + dpi->height) <= te->y)
continue;
- AddStringToDraw(te->x, te->y, (StringID)(te->string_id-1), te->params_1, te->params_2);
+ AddStringToDraw(te->x, te->y, (StringID)(te->string_id-1), te->params_1, te->params_2, 0);
}
}