# | Line 460 | Line 460 | findDuplicateFaces(Scene *sc) | |
---|---|---|
460 | ++nfound; | |
461 | } | |
462 | } | |
463 | + | if (verbose) |
464 | + | fprintf(stderr, "Found %d duplicate faces\n", nfound); |
465 | return(nfound); | |
466 | } | |
467 | ||
# | Line 555 | Line 557 | findComment(Scene *sc, const char *match, int n) | |
557 | return(-1); | |
558 | n *= (n > 0); | |
559 | while (n < sc->ndescr) | |
560 | < | if (strcasestr(sc->descr[n], match) != NULL) |
560 | > | if (strstr(sc->descr[n], match) != NULL) |
561 | return(n); | |
562 | return(-1); | |
563 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |