2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2024-12-27 07:05:34 +03:00

Move fprintf_ptr under JIT_DEBUG_FILE define

This commit is contained in:
In-line 2017-06-28 21:05:53 +04:00 committed by GitHub
parent 7e46cf73f6
commit 84743bd65c

View File

@ -320,12 +320,12 @@ void CForwardCallbackJIT::jit_debug(const char* format, ...)
char* memory_leak = Q_strdup(string); // yes, I'm lazy
static size_t print_ptr = size_t(&printf);
static size_t fprint_ptr = size_t(&mdebug_to_file);
pushad();
push(size_t(memory_leak));
call(dword_ptr[size_t(&print_ptr)]);
#ifdef JIT_DEBUG_FILE
static size_t fprint_ptr = size_t(&mdebug_to_file);
call(dword_ptr[size_t(&fprint_ptr)]);
#endif
add(esp, 4);