* Changes the secondary color used to render the text. The text * switches between the primary and secondary color whenever there's * a 0x01 in the string. * @param color Color value. */
| 279 | * @param color Color value. |
| 280 | */ |
| 281 | void Text::setSecondaryColor(Uint8 color) |
| 282 | { |
| 283 | _color2 = color; |
| 284 | _redraw = true; |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Returns the secondary color used to render the text. |
no outgoing calls
no test coverage detected