MCPcopy Create free account
hub / github.com/BohemiaInteractive/CWR / ShowTextF

Method ShowTextF

engine/Poseidon/Graphics/Core/EngineDrawing.cpp:285–293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

283}
284
285int 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

Callers 3

SendMessagesMethod · 0.80
OnSimulateMethod · 0.80
SendMessagesMethod · 0.80

Calls 1

vsprintfFunction · 0.85

Tested by

no test coverage detected