| # | Line 33 | Line 33 | VIEW *v | |
|---|---|---|
| 33 | static char ill_horiz[] = "illegal horizontal view size"; | |
| 34 | static char ill_vert[] = "illegal vertical view size"; | |
| 35 | ||
| 36 | < | if (v->vaft < -FTINY || (v->vaft > FTINY && v->vaft <= v->vfore)) |
| 36 | > | if ((v->vfore < -FTINY) | (v->vaft < -FTINY) || |
| 37 | > | (v->vaft > FTINY) & (v->vaft <= v->vfore)) |
| 38 | return("illegal fore/aft clipping plane"); | |
| 39 | ||
| 40 | if (v->vdist <= FTINY) | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |