X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fepicycle.c;h=91a47a28ee93489cca060e3f2dce3795595cf5e3;hb=aa75c7476aeaa84cf3abc192b376a8b03c325213;hp=288999fa95bbf7220b50769c69d3d950a3600db3;hpb=4ade52359b6eba3621566dac79793a33aa4c915f;p=xscreensaver diff --git a/hacks/epicycle.c b/hacks/epicycle.c index 288999fa..91a47a28 100644 --- a/hacks/epicycle.c +++ b/hacks/epicycle.c @@ -65,7 +65,7 @@ static const char *epicycle_defaults [] = { "*divisorPoisson: 0.4", "*sizeFactorMin: 1.05", "*sizeFactorMax: 2.05", -#ifdef USE_IPHONE +#ifdef HAVE_MOBILE "*ignoreRotation: True", #endif 0 @@ -723,7 +723,7 @@ epicycle_draw (Display *dpy, Window window, void *closure) st->L = compute_divisor_lcm(st->pb0->epicycles); - st->colour_cycle_rate = fabs(st->L); + st->colour_cycle_rate = labs(st->L); st->xtime = fabs(st->L * st->circle / st->wdot_max); @@ -764,7 +764,7 @@ static Bool epicycle_event (Display *dpy, Window window, void *closure, XEvent *e) { struct state *st = (struct state *) closure; - if (e->type == ButtonPress) + if (screenhack_event_helper (dpy, window, e)) { st->restart = 1; return True;