Deleted scrap code

This commit is contained in:
_
2018-04-05 14:57:06 -07:00
parent c812696612
commit aec8b64fd6
2 changed files with 0 additions and 24 deletions

View File

@@ -70,7 +70,6 @@ unsigned int gettexturebatch(
// TextureBatch shares a starting address with the first texture
// and shares the ending address with the last texture.
for (i = 0; i < tp -> batchNumber; i++) {
printf("%x \n", offset);
tb[i] = (struct TextureBatch*)filedata + offset;
// the next texture batch is TextureSize * number of textures away.
offset += bds[i] -> textureSize * (bds[i] -> texNumber);
@@ -90,7 +89,6 @@ void gettextures(unsigned int *t,
unsigned int offset = tp -> firstBatchOffset;
for (i = 0; i < tp -> batchNumber; i++) {
for (j = 0; j < bds[i] -> texNumber; j++) {
printf("texture offsets %x\n", offset);
t[k] = offset;
offset += bds[i] -> textureSize;
k++;