Check for texture pack done in memory

This commit is contained in:
surkeh 2018-04-09 21:16:20 -07:00
parent e3f942e3d7
commit a52a9ef0bc

View File

@ -71,13 +71,11 @@ bool unpackpld(const char *filedata,
fn = (char*)malloc(strlen(filename) + 3 + 4);
int size = 0;
unsigned int i = 0;
char filetype[TYPE_ID_LENGTH];
char filetypetexture[TYPE_ID_LENGTH] = {'\0', '2', '3', 'T'};
char textureid[TYPE_ID_LENGTH] = {'\0', '2', '3', 'T'};
for (i = 0; i < h.numOffset; i++) {
const char * currentfile = filedata + h.offsets[i];
size = sizeofpldstruct(&h, i, filesize);
memcpy(filetype, currentfile, TYPE_ID_LENGTH);
if (strcmp( filetype, filetypetexture ) == 0)
if (strncmp( currentfile, textureid, TYPE_ID_LENGTH ) == 0)
sprintf(fn, "%s_%d.txp", filename, i);
else
sprintf(fn, "%s_%d", filename, i);