From c748f6db570c15167bee55f8907003f2333a79ab Mon Sep 17 00:00:00 2001 From: truelight Date: Fri, 31 Dec 2004 18:57:24 +0000 Subject: (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 --- texteff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'texteff.c') 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); } } -- cgit v1.2.3-54-g00ecf