MCPcopy Create free account
hub / github.com/Phobos-developers/Phobos / LogDeferred

Method LogDeferred

src/Utilities/Debug.cpp:27–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void Debug::LogDeferred(const char* pFormat, ...)
28{
29 va_list args;
30 va_start(args, pFormat);
31 CurrentBufferSize += vsprintf_s(DeferredStringBuffer + CurrentBufferSize, 4096 - CurrentBufferSize, pFormat, args);
32 va_end(args);
33}
34
35void Debug::LogDeferredFinalize()
36{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected