When using motion elements with the final xform, the closing tag on the final xform was incorrectly written as </xform>.

git-svn-id: https://flam3.googlecode.com/svn/trunk@160 77852712-ef1d-11de-8684-7d64432d61a3
This commit is contained in:
Erik Reckase 2011-07-23 10:40:41 +00:00 committed by Scott Draves
parent 7c5ed6d5c2
commit 0346f58852

View File

@ -2453,7 +2453,11 @@ void flam3_print_xform(FILE *f, flam3_xform *x, int final_flag, int numstd, doub
for (nm=0; nm<x->num_motion; nm++)
flam3_print_xform(f, &(x->motion[nm]), 0, 0, NULL, 1);
if (final_flag)
fprintf(f," </finalxform>\n");
else
fprintf(f," </xform>\n");
} else
fprintf(f, "/>\n");
}