- replaced backslash in 'decompiled/textures' with regular slash.

This commit is contained in:
Christoph Oelckers 2021-08-08 10:05:31 +02:00
parent 6ac6562d2b
commit 2a69555496

View file

@ -465,7 +465,7 @@ void GenerateTextureFile(WadItemList * pTex,WadItemList * pPNam, int options)
{
char buffer[40];
mkdir("decompiled");
sprintf(buffer,"decompiled\\textures.%c", pTex->Name()[7]);
sprintf(buffer,"decompiled/textures.%c", pTex->Name()[7]);
bool nulltex = !strnicmp(pTex->Name(), "TEXTURE1", 8);
GenerateTextureFile(buffer, (const char*)pTex->Address(), (const char *)pPNam->Address(), options, nulltex);
}