--- ray/src/util/rad.c 1993/11/11 10:20:06 2.30 +++ ray/src/util/rad.c 1993/11/11 13:17:01 2.31 @@ -1317,7 +1317,17 @@ char *opts; /* get pfilt options */ pfiltopts(pfopts); /* get resolution, reporting */ - mult = vscale(QUALITY)+1; + switch (vscale(QUALITY)) { + case LOW: + mult = 1; + break; + case MEDIUM: + mult = 2; + break; + case HIGH: + mult = 3; + break; + } { int xres, yres; double aspect;