| 25 | } |
| 26 | |
| 27 | void 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 | |
| 35 | void Debug::LogDeferredFinalize() |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected