| 283 | } |
| 284 | |
| 285 | int CCALL Engine::ShowTextF(DWORD timeToLive, int x, int y, const char* format, ...) |
| 286 | { |
| 287 | BString<512> buf; |
| 288 | va_list arglist; |
| 289 | va_start(arglist, format); |
| 290 | vsprintf(buf, format, arglist); |
| 291 | va_end(arglist); |
| 292 | return ShowText(timeToLive, x, y, buf); |
| 293 | } |
| 294 | |
| 295 | } // namespace Poseidon |
no test coverage detected