From: Jason Woofenden Date: Tue, 3 Apr 2007 21:20:40 +0000 (-0400) Subject: fixed x coordinate range for new_rocks() X-Git-Tag: 0.5.3~6 X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=commitdiff_plain;h=38c7d9db0b40a72ac6b7c613eed05f20ea49d3c0 fixed x coordinate range for new_rocks() --- diff --git a/rocks.c b/rocks.c index 9384fe0..7c43427 100644 --- a/rocks.c +++ b/rocks.c @@ -175,14 +175,14 @@ new_rocks(void) r->dy = RDY*crnd(); break; case BOTTOM: - r->x = frnd()*(XSIZE + r->image->w); + r->x = (frnd()*(XSIZE + r->image->w)) - r->image->w; r->y = YSIZE; r->dx = RDX*crnd(); r->dy = -weighted_rnd_range(rmin[i], rmax[i]) + screendy; break; case TOP: - r->x = frnd()*(XSIZE + r->image->w); + r->x = (frnd() * (XSIZE + r->image->w)) - r->image->w; r->y = -r->image->h; r->dx = RDX*crnd();