mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +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))) {
|
||||
// lib not found
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue