From 2a69555496aebefc48ae9f22978c3ea8a56c6d9d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 8 Aug 2021 10:05:31 +0200 Subject: [PATCH] - replaced backslash in 'decompiled/textures' with regular slash. --- wadext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadext.cpp b/wadext.cpp index d9b9dbe..1fbfedd 100644 --- a/wadext.cpp +++ b/wadext.cpp @@ -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); }