* Update vehicle loading indicators. * @param te_id TextEffectID to be updated. * @param string String which is printed. */
| 573 | * @param string String which is printed. |
| 574 | */ |
| 575 | void UpdateFillingPercent(TextEffectID te_id, uint8_t percent, StringID string) |
| 576 | { |
| 577 | assert(string != STR_NULL); |
| 578 | |
| 579 | UpdateTextEffect(te_id, GetEncodedString(string, percent)); |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * Hide vehicle loading indicators. |
no test coverage detected