mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-04 02:55:50 +03:00
Fix slashes in seqgroup filename
This commit is contained in:
parent
81d5369e97
commit
e003ef04a2
@ -1481,7 +1481,11 @@ int EXT_FUNC PF_precache_model_I(const char *s)
|
|||||||
if (pSeqGroup->name[0] == '\0')
|
if (pSeqGroup->name[0] == '\0')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
PF_precache_generic_I(pSeqGroup->name);
|
char seqGroupName[MAX_QPATH];
|
||||||
|
Q_strcpy(seqGroupName, pSeqGroup->name);
|
||||||
|
ForwardSlashes(seqGroupName);
|
||||||
|
|
||||||
|
PF_precache_generic_I(seqGroupName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user