mirror of
https://github.com/ZDoom/wadext.git
synced 2024-11-24 12:51:25 +00:00
- replaced backslash in 'decompiled/textures' with regular slash.
This commit is contained in:
parent
6ac6562d2b
commit
2a69555496
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue