| 220 | } |
| 221 | |
| 222 | void DrawString(const char* str, unsigned int x, unsigned int y, uint8_t r, uint8_t g, uint8_t b) { |
| 223 | int xOffset = 0; |
| 224 | while (*str != 0) { |
| 225 | Video::DrawChar(*str, x + xOffset, y, r, g, b); |
| 226 | xOffset += 8; |
| 227 | str++; |
| 228 | } |
| 229 | } |
| 230 | } |
no test coverage detected