| # | Line 189 | Line 189 | int orig, nobjs; | |
|---|---|---|
| 189 | { | |
| 190 | int n; | |
| 191 | register OBJECT *os; | |
| 192 | < | register OBJECT i; |
| 192 | > | register OBJECT i, s; |
| 193 | ||
| 194 | for (n = 0; n < OSTSIZ; n++) { | |
| 195 | if ((os = ostable[n]) == NULL) | |
| 196 | continue; | |
| 197 | while ((i = *os++) > 0) | |
| 198 | while (i--) { | |
| 199 | < | if (*os >= orig && *os < orig+nobjs && |
| 200 | < | !issurface(objptr(*os)->otype)) |
| 199 | > | s = *os; |
| 200 | > | if (s >= orig && s < orig+nobjs && |
| 201 | > | !issurface(objptr(s)->otype)) |
| 202 | return(1); | |
| 203 | os++; | |
| 204 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |