diff options
| author | qwasdrizzel <145519042+qwasdrizzel@users.noreply.github.com> | 2026-03-05 17:17:45 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-05 17:17:45 -0600 |
| commit | 0666959d312dc74903f55d1071488a90239330f1 (patch) | |
| tree | 5c6886f7ec65a7828bc6e34a469514e418bcf78b /Minecraft.Client/Stitcher.cpp | |
| parent | 9370cbc7d878df1615d8ce76bc459e8b414d0f19 (diff) | |
| parent | eed770b121aa4ce38f002db042d0137c24c6d344 (diff) | |
Merge branch 'smartcmd:main' into main
Diffstat (limited to 'Minecraft.Client/Stitcher.cpp')
| -rw-r--r-- | Minecraft.Client/Stitcher.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Minecraft.Client/Stitcher.cpp b/Minecraft.Client/Stitcher.cpp index 5888d4f8..d52954c4 100644 --- a/Minecraft.Client/Stitcher.cpp +++ b/Minecraft.Client/Stitcher.cpp @@ -81,10 +81,8 @@ void Stitcher::stitch() stitchedTexture = NULL; //for (int i = 0; i < textureHolders.length; i++) - for(AUTO_VAR(it, texturesToBeStitched.begin()); it != texturesToBeStitched.end(); ++it) + for( TextureHolder *textureHolder : texturesToBeStitched ) { - TextureHolder *textureHolder = *it; //textureHolders[i]; - if (!addToStorage(textureHolder)) { app.DebugPrintf("Stitcher exception!\n"); @@ -101,10 +99,10 @@ vector<StitchSlot *> *Stitcher::gatherAreas() vector<StitchSlot *> *result = new vector<StitchSlot *>(); //for (StitchSlot slot : storage) - for(AUTO_VAR(it, storage.begin()); it != storage.end(); ++it) + for( StitchSlot *slot : storage ) { - StitchSlot *slot = *it; - slot->collectAssignments(result); + if ( slot ) + slot->collectAssignments(result); } return result; |
