remove debug stuff

This commit is contained in:
J-D-K 2020-03-19 15:46:23 -04:00
parent 68093bacae
commit 03b09f550a

View File

@ -545,10 +545,6 @@ tex *texLoadRGBA(const char *path)
uLongf destSz = ret->size * 4;
uncompress((unsigned char *)ret->data, &destSz, inBuff, dataSize);
FILE *deb = fopen("sdmc:/JKSV/deb.bin", "wb");
fwrite(ret->data, sizeof(uint32_t), ret->size, deb);
fclose(deb);
free(inBuff);
return ret;
}