Minor adjustments

This commit is contained in:
2018-04-25 04:56:37 -07:00
parent 063a091d7f
commit e9fa07b695

View File

@ -102,7 +102,7 @@ Functions
false when failing checks against segmentation faults. false when failing checks against segmentation faults.
Example logic to extract all textures: Example logic to interact with all textures:
{ {
// After reading the file in... // After reading the file in...
// Need to know how many batches are in the package. // Need to know how many batches are in the package.
@ -124,9 +124,9 @@ Example logic to extract all textures:
// There are now textures in 't'. // There are now textures in 't'.
for (j = 0; j < d -> texNumber; j++) { for (j = 0; j < d -> texNumber; j++) {
// Do whatever you want with however many of them there are. // Do whatever you want with however many textures there are.
} }
free(t);
} }
} }