| 1026 |
|
char pfopts[128]; |
| 1027 |
|
char vs[32], *vw; |
| 1028 |
|
int vn, mult; |
| 1029 |
+ |
long lastdate; |
| 1030 |
|
/* get pfilt options */ |
| 1031 |
|
pfiltopts(pfopts); |
| 1032 |
|
/* get resolution, reporting */ |
| 1057 |
|
else |
| 1058 |
|
badvalue(REPORT); |
| 1059 |
|
} |
| 1060 |
+ |
/* get update time */ |
| 1061 |
+ |
lastdate = octreedate > matdate ? octreedate : matdate; |
| 1062 |
|
/* do each view */ |
| 1063 |
|
vn = 0; |
| 1064 |
|
while ((vw = getview(vn++, vs)) != NULL) { |
| 1066 |
|
sprintf(vs, "%d", vn); |
| 1067 |
|
sprintf(picfile, "%s_%s.pic", vval(PICTURE), vs); |
| 1068 |
|
/* check date on picture */ |
| 1069 |
< |
if (fdate(picfile) >= octreedate) |
| 1069 |
> |
if (fdate(picfile) >= lastdate) |
| 1070 |
|
continue; |
| 1071 |
|
/* build rpict command */ |
| 1072 |
|
sprintf(rawfile, "%s_%s.raw", vval(PICTURE), vs); |