- fix backslashes in MD3 skin names.

This commit is contained in:
Christoph Oelckers 2017-12-03 20:02:55 +01:00
parent 0fa74220c9
commit cea89ba3ae
1 changed files with 2 additions and 0 deletions

View File

@ -166,6 +166,8 @@ bool FMD3Model::Load(const char * path, int lumpnum, const char * buffer, int le
for (int i = 0; i < s->numSkins; i++)
{
// [BB] According to the MD3 spec, Name is supposed to include the full path.
// ... and since some tools seem to output backslashes, these need to be replaced with forward slashes to work.
FixPathSeperator(shader[i].Name);
s->skins[i] = LoadSkin("", shader[i].Name);
// [BB] Fall back and check if Name is relative.
if (!s->skins[i].isValid())