summaryrefslogtreecommitdiff
path: root/texteff.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-11-05 11:52:19 +0000
committertron <tron@openttd.org>2006-11-05 11:52:19 +0000
commitf9fa8437ebb57bb0f824aacf759b0f4faaef13ad (patch)
treef68d3cc68c89505e56bbdc1faf113fc435ffd959 /texteff.c
parent24cce7bfa1ee908f36e8f1d0aed5dbc6ffd031c6 (diff)
downloadopenttd-f9fa8437ebb57bb0f824aacf759b0f4faaef13ad.tar.xz
(svn r7067) Remove the unused parameter params_3 from AddStringToDraw()
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 c535fab06..6f1f90811 100644
--- a/texteff.c
+++ b/texteff.c
@@ -298,7 +298,7 @@ void DrawTextEffects(DrawPixelInfo *dpi)
dpi->top <= te->bottom &&
dpi->left + dpi->width > te->x &&
dpi->top + dpi->height > te->y) {
- AddStringToDraw(te->x, te->y, te->string_id, te->params_1, te->params_2, 0);
+ AddStringToDraw(te->x, te->y, te->string_id, te->params_1, te->params_2);
}
}
break;
@@ -310,7 +310,7 @@ void DrawTextEffects(DrawPixelInfo *dpi)
dpi->top <= te->bottom * 2 - te->y &&
dpi->left + dpi->width > te->x &&
dpi->top + dpi->height > te->y) {
- AddStringToDraw(te->x, te->y, (StringID)(te->string_id-1), te->params_1, te->params_2, 0);
+ AddStringToDraw(te->x, te->y, (StringID)(te->string_id-1), te->params_1, te->params_2);
}
}
break;