From 5375b32aee2671cb7f0520aa2e90281ed465da51 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 29 Jun 2009 09:32:58 +0000 Subject: (svn r16691) -Codechange: what's the point of getting the fifth dparam and then using that as the second dparam later on? Especially when the fifth dparam is never set and the second dparam is never used. --- src/texteff.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/texteff.cpp b/src/texteff.cpp index ef8ba25fc..c478578be 100644 --- a/src/texteff.cpp +++ b/src/texteff.cpp @@ -26,7 +26,6 @@ struct TextEffect { int32 bottom; uint16 duration; uint64 params_1; - uint64 params_2; TextEffectMode mode; }; @@ -84,7 +83,6 @@ TextEffectID AddTextEffect(StringID msg, int x, int y, uint16 duration, TextEffe te->y = y - 5; te->bottom = y + 5; te->params_1 = GetDParam(0); - te->params_2 = GetDParam(4); te->mode = mode; GetString(buffer, msg, lastof(buffer)); @@ -106,7 +104,6 @@ void UpdateTextEffect(TextEffectID te_id, StringID msg) te = &_text_effect_list[te_id]; te->string_id = msg; te->params_1 = GetDParam(0); - te->params_2 = GetDParam(4); /* Update width of text effect */ char buffer[100]; @@ -171,7 +168,7 @@ void DrawTextEffects(DrawPixelInfo *dpi) dpi->left + dpi->width > te->x && dpi->top + dpi->height > te->y) { if (te->mode == TE_RISING || (_settings_client.gui.loading_indicators && !IsTransparencySet(TO_LOADING))) { - 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, INVALID_STRING_ID); } } } @@ -186,7 +183,7 @@ void DrawTextEffects(DrawPixelInfo *dpi) dpi->left + dpi->width > te->x && dpi->top + dpi->height > te->y) { if (te->mode == TE_RISING || (_settings_client.gui.loading_indicators && !IsTransparencySet(TO_LOADING))) { - 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, INVALID_STRING_ID); } } } -- cgit v1.2.3-70-g09d2