X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fvermiculate.c;h=936479161bcee3032fedbc83e36f102e2177a17c;hb=39809ded547bdbb08207d3e514950425215b4410;hp=4d816ff63adbf5271c5496a77c04f8e1347d7e0a;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;p=xscreensaver diff --git a/hacks/vermiculate.c b/hacks/vermiculate.c index 4d816ff6..93647916 100644 --- a/hacks/vermiculate.c +++ b/hacks/vermiculate.c @@ -438,10 +438,6 @@ maininit (struct state *st) st->instring = sampleStrings[n].str; st->speed = sampleStrings[n].speed; } - if (st->speed == 0) - { - st->speed = 200; - } st->boxh = 10; st->boxw = 10; st->gridden = 0; @@ -773,12 +769,8 @@ vermiculate_init (Display *d, Window w) st->instring = 0; st->max_ticks = get_integer_resource (st->dpy, "ticks", "Integer"); - { - int temp = get_integer_resource (st->dpy, "speed", "Speed"); - if (temp != 0) - st->speed = temp; - } - + st->speed = get_integer_resource (st->dpy, "speed", "Speed"); + if (st->speed <= 0) st->speed = 1; st->mycolors[0].pixel = BlackPixel (st->dpy, DefaultScreen (st->dpy)); XSetWindowBackground (st->dpy, st->window, @@ -1207,12 +1199,13 @@ vermiculate_free (Display *dpy, Window window, void *closure) static const char *vermiculate_defaults[] = { + ".lowrez: true", ".background: Black", "*ticks: 20000", "*fpsSolid: true", - "*speed: 0", + "*speed: 1", "*instring: ", -#ifdef USE_IPHONE +#ifdef HAVE_MOBILE "*ignoreRotation: True", #endif 0