- fixed checkForHacks placement.

This commit is contained in:
Christoph Oelckers 2020-04-19 19:52:03 +02:00
commit b7ea483323
2 changed files with 3 additions and 6 deletions

View file

@ -843,8 +843,6 @@ void FMultipatchTextureBuilder::ResolvePatches(BuildInfo &buildinfo)
i--;
}
}
checkForHacks(buildinfo);
}
void FMultipatchTextureBuilder::ResolveAllPatches()
@ -891,6 +889,7 @@ void FMultipatchTextureBuilder::ResolveAllPatches()
{
// If this texture is just a wrapper around a single patch, we can simply
// use that patch's image directly here.
checkForHacks(buildinfo);
bool done = false;
if (buildinfo.Parts.Size() == 1)
@ -912,7 +911,6 @@ void FMultipatchTextureBuilder::ResolveAllPatches()
auto itex = new FImageTexture(img);
AddImageToTexture(itex, buildinfo);
}
BuiltTextures.Delete(i);
donesomething = true;
}