| 625 | va_end(ap); |
| 626 | } |
| 627 | void Game::sendTextEx(bool toAllies, const char *format, ...) |
| 628 | { |
| 629 | va_list ap; |
| 630 | va_start(ap,format); |
| 631 | this->vSendTextEx(toAllies, format, ap); |
| 632 | va_end(ap); |
| 633 | }; |
| 634 | void Game::printf(const char *format, ...) |
| 635 | { |
| 636 | va_list ap; |
no test coverage detected