(svn r14371) -Fix [FS#2313]: loading indicator didn't stay with the front engine when turning a train in a station.

This commit is contained in:
rubidium
2008-09-21 18:28:35 +00:00
parent 2bf182fb36
commit 7ef5406946
4 changed files with 9 additions and 7 deletions

View File

@@ -607,9 +607,12 @@ void UpdateFillingPercent(TextEffectID te_id, uint8 percent, StringID string)
UpdateTextEffect(te_id, string);
}
void HideFillingPercent(TextEffectID te_id)
void HideFillingPercent(TextEffectID *te_id)
{
if (te_id != INVALID_TE_ID) RemoveTextEffect(te_id);
if (*te_id == INVALID_TE_ID) return;
RemoveTextEffect(*te_id);
*te_id = INVALID_TE_ID;
}
static const Widget _tooltips_widgets[] = {