mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
be a little noisier about plugin load failure
This commit is contained in:
parent
9390a195e1
commit
71841fe109
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ PI_LoadPlugin (const char *type, const char *name)
|
||||||
if (!(dlhand = pi_open_lib (realname, 0))) {
|
if (!(dlhand = pi_open_lib (realname, 0))) {
|
||||||
// lib not found
|
// lib not found
|
||||||
Sys_Printf ("Could not load plugin \"%s\".\n", realname);
|
Sys_Printf ("Could not load plugin \"%s\".\n", realname);
|
||||||
Sys_DPrintf ("Reason: \"%s\".\n", pi_error);
|
Sys_Printf ("Reason: \"%s\".\n", pi_error);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue