Hi guys,
I've got two loops, and I want to be able to continue; the outermost loop when the innermost loop finds something. How would I do that?
//(...)
for (n = startStorage; n < quadcount; n++) {
if (!notOptimized(n, optimized)) continue;
int *x = &quadindex[n*4];
for (eachX = 0; eachX < 4; eachX++) {
if(facesPerVert[x[eachX]] > 4) continue n-loop, not eachX-loop!;
//(...)
TIA,
Clockowl