mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
shh!! :)
This commit is contained in:
parent
673e6e66b7
commit
18ba72b544
1 changed files with 3 additions and 2 deletions
|
@ -113,7 +113,8 @@ QFGL_ProcAddress (void *handle, const char *name)
|
|||
#endif
|
||||
}
|
||||
|
||||
Sys_Printf ("DEBUG: Finding symbol %s ... ", name);
|
||||
if (developer && developer->int_val)
|
||||
Sys_Printf ("DEBUG: Finding symbol %s ... ", name);
|
||||
#if defined(HAVE_DLOPEN)
|
||||
glfunc = dlsym (handle, name);
|
||||
#elif defined(_WIN32)
|
||||
|
@ -128,7 +129,7 @@ QFGL_ProcAddress (void *handle, const char *name)
|
|||
glfunc = glGetProcAddress (name);
|
||||
|
||||
if (glfunc) {
|
||||
Con_Printf ("found [%p]\n", glfunc);
|
||||
Con_DPrintf ("found [%p]\n", glfunc);
|
||||
return glfunc;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue