diff -r 5486b7740f33 -r a22d6bc16a51 texteff.c --- a/texteff.c Fri Dec 31 15:55:14 2004 +0000 +++ b/texteff.c Fri Dec 31 18:57:24 2004 +0000 @@ -281,7 +281,7 @@ (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 @@ (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); } }