| 65 | } |
| 66 | |
| 67 | void UpdateTextEffect(TextEffectID te_id, EncodedString &&msg) |
| 68 | { |
| 69 | /* Update details */ |
| 70 | TextEffect &te = _text_effects[te_id]; |
| 71 | if (msg == te.msg) return; |
| 72 | te.msg = std::move(msg); |
| 73 | |
| 74 | te.UpdatePosition(te.center, te.top, te.msg.GetDecodedString()); |
| 75 | } |
| 76 | |
| 77 | void UpdateAllTextEffectVirtCoords() |
| 78 | { |
no test coverage detected