X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fgltext.c;h=0e83ec34af50c1237832afa5692412a6bbcef68c;hb=bc7b7a8eb122206d239ec0e693676bcce31be1aa;hp=64934cb8986992322e97065a2b5ad8aa7854acea;hpb=9c9d475ff889ed8be02e8ce8c17da28b93278fca;p=xscreensaver diff --git a/hacks/glx/gltext.c b/hacks/glx/gltext.c index 64934cb8..0e83ec34 100644 --- a/hacks/glx/gltext.c +++ b/hacks/glx/gltext.c @@ -25,7 +25,7 @@ extern XtAppContext app; #define DEF_SPIN "XYZ" #define DEF_WANDER "True" -#define DEFAULTS "*delay: 10000 \n" \ +#define DEFAULTS "*delay: 20000 \n" \ "*showFPS: False \n" \ "*wireframe: False \n" \ "*spin: " DEF_SPIN "\n" \ @@ -54,6 +54,10 @@ extern XtAppContext app; #include #include +#ifdef HAVE_LOCALE_H +# include +#endif /* HAVE_LOCALE_H */ + #ifdef USE_GL /* whole file */ #ifdef HAVE_UNAME @@ -281,6 +285,10 @@ init_text (ModeInfo *mi) text_configuration *tp; int i; +# ifdef HAVE_SETLOCALE + setlocale (LC_TIME, ""); /* for strftime() calls */ +# endif + if (!tps) { tps = (text_configuration *) calloc (MI_NUM_SCREENS(mi), sizeof (text_configuration)); @@ -301,9 +309,9 @@ init_text (ModeInfo *mi) { Bool spinx=False, spiny=False, spinz=False; - double spin_speed = 1.0; - double wander_speed = 0.05; - double spin_accel = 1.0; + double spin_speed = 0.5; + double wander_speed = 0.02; + double spin_accel = 0.5; char *s = do_spin; while (*s)