* Draw a NewGRF debug box. * @param r Rectangle of the box. * @param colour Colour of the debug box. * @param clicked Box is lowered. */
| 685 | * @param clicked Box is lowered. |
| 686 | */ |
| 687 | static inline void DrawDebugBox(const Rect &r, Colours colour, bool clicked) |
| 688 | { |
| 689 | DrawImageButtons(r, WWT_DEBUGBOX, colour, clicked, SPR_WINDOW_DEBUG, SA_CENTER); |
| 690 | } |
| 691 | |
| 692 | /** |
| 693 | * Draw a resize box. |
no test coverage detected