X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Frd-bomb.c;h=878f5b9b6996ffdad0a49e2333f31a5599634387;hp=dfcc2897cab5cacf51cb1c4c0d2c1cec183b4e31;hb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;hpb=dba664f31aa87285db4d76cf8c5e66335299703a diff --git a/hacks/rd-bomb.c b/hacks/rd-bomb.c index dfcc2897..878f5b9b 100644 --- a/hacks/rd-bomb.c +++ b/hacks/rd-bomb.c @@ -95,10 +95,10 @@ pixack_init(struct state *st, int *size_h, int *size_v) st->height = get_integer_resource (st->dpy, "height", "Integer"); if (st->width <= 0 && st->height <= 0 && (R & 1)) - st->width = st->height = 48 + BELLRAND(256); + st->width = st->height = 64 + BELLRAND(512); - if (st->width <= 0) st->width = 48 + BELLRAND(256); - if (st->height <= 0) st->height = 48 + BELLRAND(256); + if (st->width <= 0) st->width = 64 + BELLRAND(512); + if (st->height <= 0) st->height = 64 + BELLRAND(512); if (st->width > st->xgwa.width) st->width = st->xgwa.width; if (st->height > st->xgwa.height) st->height = st->xgwa.height;