--- ray/src/util/ranimate.c 2013/06/08 02:49:19 2.55 +++ ray/src/util/ranimate.c 2022/06/01 17:08:24 2.57 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: ranimate.c,v 2.55 2013/06/08 02:49:19 greg Exp $"; +static const char RCSid[] = "$Id: ranimate.c,v 2.57 2022/06/01 17:08:24 greg Exp $"; #endif /* * Radiance animation control program @@ -1412,7 +1412,7 @@ static int rmfile(char *fn) /* remove a file */ { if (!silent) -#ifdef _WIN32 +#if defined(_WIN32) || defined(_WIN64) printf("\tdel %s\n", fn); #else printf("\trm -f %s\n", fn); @@ -1465,7 +1465,7 @@ getblur(double *mbf, double *dbf) /* get # blur sample int nmblur, ndblur; char *s; /* get motion blur */ - if (!vdef(MBLUR) || (mblurf = atof(vval(MBLUR))) < 0.0) + if (vdef(ANIMATE) || !vdef(MBLUR) || (mblurf = atof(vval(MBLUR))) < 0.0) mblurf = 0.0; if (mbf != NULL) *mbf = mblurf;