| 11 | int Debug::CurrentBufferSize = 0; |
| 12 | |
| 13 | void Debug::Log(const char* pFormat, ...) |
| 14 | { |
| 15 | va_list args; |
| 16 | va_start(args, pFormat); |
| 17 | vsprintf_s(FinalStringBuffer, pFormat, args); |
| 18 | LogGame("%s %s", "[Phobos]", FinalStringBuffer); |
| 19 | va_end(args); |
| 20 | } |
| 21 | |
| 22 | void Debug::LogGame(const char* pFormat, ...) |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected