| # | Line 29 | Line 29 | FVECT dv; | |
|---|---|---|
| 29 | ||
| 30 | for (i = 0; i < 3; i++) | |
| 31 | if (dv[i] < 0.) { | |
| 32 | < | cd[i] = dv[i] * -DCSCALE; |
| 32 | > | cd[i] = (int)(dv[i] * -DCSCALE); |
| 33 | dc |= FXNEG<<i; | |
| 34 | } else | |
| 35 | < | cd[i] = dv[i] * DCSCALE; |
| 35 | > | cd[i] = (int)(dv[i] * DCSCALE); |
| 36 | if (cd[0] <= cd[1]) { | |
| 37 | dc |= F1X | cd[0] << F1SFT; | |
| 38 | cm = cd[1]; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |