| 201 | } |
| 202 | |
| 203 | void Console::WriteFormat(const char* pFormat, ...) |
| 204 | { |
| 205 | va_list args; |
| 206 | va_start(args, pFormat); |
| 207 | WriteWithVArgs(pFormat, args); |
| 208 | va_end(args); |
| 209 | } |
| 210 | |
| 211 | void Console::PatchLog(DWORD dwAddr, void* fakeFunc, DWORD* pdwRealFunc) |
| 212 | { |
nothing calls this directly
no outgoing calls
no test coverage detected