X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fbouncingcow.c;h=1c9e92bcf95bf75b37807aaa41d2cae57bd2a0ab;hp=667dd1e8486ca8a473ea5cf14f94fe3ad8161554;hb=ffd8c0873576a9e3065696a624dce6b766b77062;hpb=40eacb5812ef7c0e3374fb139afbb4f5bc8bbfb5 diff --git a/hacks/glx/bouncingcow.c b/hacks/glx/bouncingcow.c index 667dd1e8..1c9e92bc 100644 --- a/hacks/glx/bouncingcow.c +++ b/hacks/glx/bouncingcow.c @@ -1,4 +1,4 @@ -/* bouncingcow, Copyright (c) 2003 Jamie Zawinski +/* bouncingcow, Copyright (c) 2003, 2004 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -23,7 +23,7 @@ extern XtAppContext app; #define EVENT_MASK PointerMotionMask #define sws_opts xlockmore_opts -#define DEF_SPEED "1.0" +#define DEF_SPEED "0.7" #define DEF_TEXTURE "(none)" #define DEFAULTS "*delay: 30000 \n" \ @@ -100,12 +100,12 @@ static const char *do_texture; static XrmOptionDescRec opts[] = { { "-speed", ".speed", XrmoptionSepArg, 0 }, {"-texture", ".texture", XrmoptionSepArg, 0 }, - {"+texture", ".texture", XrmoptionNoArg, (caddr_t) "(none)" }, + {"+texture", ".texture", XrmoptionNoArg, "(none)" }, }; static argtype vars[] = { - {(caddr_t *) &speed, "speed", "Speed", DEF_SPEED, t_Float}, - {(caddr_t *) &do_texture, "texture", "Texture", DEF_TEXTURE, t_String}, + {&speed, "speed", "Speed", DEF_SPEED, t_Float}, + {&do_texture, "texture", "Texture", DEF_TEXTURE, t_String}, }; ModeSpecOpt sws_opts = {countof(opts), opts, countof(vars), vars, NULL};