MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / DisplayFormatMessage

Function DisplayFormatMessage

Source/Internal/error.cpp:251–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249}
250
251void DisplayFormatMessage(const char* title,
252 const char* fmtcontents,
253 ...) {
254 static const int kBufSize = 2048;
255 char mess_buf[kBufSize];
256 va_list args;
257 va_start(args, fmtcontents);
258 VFormatString(mess_buf, kBufSize, fmtcontents, args);
259 va_end(args);
260 return DisplayMessage(title, mess_buf);
261}
262
263void DisplayMessage(const char* title,
264 const char* contents) {

Callers 1

ChangeControlScriptMethod · 0.85

Calls 2

VFormatStringFunction · 0.85
DisplayMessageFunction · 0.85

Tested by

no test coverage detected