mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
damn, not only did that not fix the problem, I broke stuff
This commit is contained in:
parent
ee7d43f6ae
commit
deac792513
1 changed files with 1 additions and 1 deletions
|
@ -147,10 +147,10 @@ Skin_Cache (skin_t *skin)
|
|||
snprintf (name, sizeof (name), "skins/%s.pcx", skin->name);
|
||||
COM_FOpenFile (name, &file);
|
||||
if (!file) {
|
||||
Con_Printf ("Couldn't load skin %s\n", name);
|
||||
snprintf (name, sizeof (name), "skins/%s.pcx", baseskin->string);
|
||||
COM_FOpenFile (name, &file);
|
||||
if (!file) {
|
||||
Con_Printf ("Couldn't load skin %s\n", name);
|
||||
skin->failedload = true;
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue