Oops on funny xysize_range() arguments

Comments claimed funny arguments could happen.  I don't think so.
This commit is contained in:
Markus Armbruster 2008-08-16 22:07:28 -04:00
parent 3ca882714d
commit d17f33d138

View file

@ -166,20 +166,14 @@ xysize_range(struct range *rp)
rp->width = WORLD_X + rp->hx - rp->lx;
else
rp->width = rp->hx - rp->lx;
#ifndef HAY
/* This is a necessary check for small, hitech worlds. */
if (rp->width > WORLD_X)
if (CANT_HAPPEN(rp->width > WORLD_X))
rp->width = WORLD_X;
#endif
if (rp->ly >= rp->hy)
rp->height = WORLD_Y + rp->hy - rp->ly;
else
rp->height = rp->hy - rp->ly;
#ifndef HAY
/* This is a necessary check for small, hitech worlds. */
if (rp->height > WORLD_Y)
if (CANT_HAPPEN(rp->height > WORLD_Y))
rp->height = WORLD_Y;
#endif
}
/* This is called also called in snxtitem.c */