(svn r18244) -Codechange: Make texteffects big font aware.

This commit is contained in:
frosch 2009-11-22 20:23:41 +00:00
parent 4661abd33b
commit c24d6d3f4e
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ TextEffectID AddTextEffect(StringID msg, int x, int y, uint16 duration, TextEffe
/* Start defining this object */
te->string_id = msg;
te->duration = duration;
te->y = y - 5;
te->bottom = y + 5;
te->y = y - FONT_HEIGHT_NORMAL / 2;
te->bottom = y + FONT_HEIGHT_NORMAL / 2;
te->params_1 = GetDParam(0);
te->mode = mode;