From e9fa07b695d37a77b018395287ebefd3fd7c7d0c Mon Sep 17 00:00:00 2001 From: <> Date: Wed, 25 Apr 2018 04:56:37 -0700 Subject: [PATCH] Minor adjustments --- docs/doc-tex.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/doc-tex.txt b/docs/doc-tex.txt index e52a878..5ce4387 100644 --- a/docs/doc-tex.txt +++ b/docs/doc-tex.txt @@ -102,7 +102,7 @@ Functions 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... // 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'. 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); } }