| 1628 | } |
| 1629 | |
| 1630 | void textbackground(int col) |
| 1631 | { |
| 1632 | if (!_headless_mode) |
| 1633 | { |
| 1634 | const auto style = curs_attr_bg(col); |
| 1635 | attr_set(style.attr, style.color_pair, nullptr); |
| 1636 | } |
| 1637 | |
| 1638 | #ifdef USE_TILE_WEB |
| 1639 | tiles.textbackground(col); |
| 1640 | #endif |
| 1641 | } |
| 1642 | |
| 1643 | void gotoxy_sys(int x, int y) |
| 1644 | { |
no test coverage detected