| 104 |
|
if (load & IO_SCENE) { |
| 105 |
|
/* check object count */ |
| 106 |
|
if (nobjects != objorig+fnobjects) |
| 107 |
< |
octerror(USER, "bad object count -- stale octree?"); |
| 107 |
> |
octerror(USER, "bad object count; octree stale?"); |
| 108 |
|
/* check for non-surfaces */ |
| 109 |
|
if (nonsurfinset(objorig, fnobjects)) |
| 110 |
< |
octerror(USER, "non-surface in set -- stale octree?"); |
| 110 |
> |
octerror(USER, "non-surface in set; octree stale?"); |
| 111 |
|
} |
| 112 |
|
return(nf); |
| 113 |
|
} |
| 173 |
|
double d; |
| 174 |
|
|
| 175 |
|
d = (double)getint(4)/0x7fffffff; |
| 176 |
< |
return(ldexp(d, getint(1))); |
| 176 |
> |
return(ldexp(d, (int)getint(1))); |
| 177 |
|
} |
| 178 |
|
|
| 179 |
|
|