mirror of
https://github.com/scottdraves/flam3.git
synced 2025-01-21 13:30:04 -05:00
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:
parent
7c5ed6d5c2
commit
0346f58852
@ -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++)
|
for (nm=0; nm<x->num_motion; nm++)
|
||||||
flam3_print_xform(f, &(x->motion[nm]), 0, 0, NULL, 1);
|
flam3_print_xform(f, &(x->motion[nm]), 0, 0, NULL, 1);
|
||||||
|
|
||||||
|
if (final_flag)
|
||||||
|
fprintf(f," </finalxform>\n");
|
||||||
|
else
|
||||||
fprintf(f," </xform>\n");
|
fprintf(f," </xform>\n");
|
||||||
|
|
||||||
} else
|
} else
|
||||||
fprintf(f, "/>\n");
|
fprintf(f, "/>\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user