]> git.sesse.net Git - vlc/commitdiff
* modules/visualization/goom.c: default speed is now set to 6.
authorGildas Bazin <gbazin@videolan.org>
Thu, 15 Apr 2004 20:01:24 +0000 (20:01 +0000)
committerGildas Bazin <gbazin@videolan.org>
Thu, 15 Apr 2004 20:01:24 +0000 (20:01 +0000)
modules/visualization/goom.c

index 47c280cf806364bb97bbca2b777beca681805818..e584ab6c1f6132a84fb45a2161b88abdad9de303 100644 (file)
@@ -52,7 +52,7 @@ static void Close        ( vlc_object_t * );
 
 #define SPEED_TEXT N_("Goom animation speed")
 #define SPEED_LONGTEXT N_("Allows you to reduce the speed of the animation " \
-  "(default 7, max 10).")
+  "(default 6, max 10).")
 
 #define MAX_SPEED 10
 
@@ -63,7 +63,7 @@ vlc_module_begin();
                  WIDTH_TEXT, RES_LONGTEXT, VLC_FALSE );
     add_integer( "goom-height", 240, NULL,
                  HEIGHT_TEXT, RES_LONGTEXT, VLC_FALSE );
-    add_integer( "goom-speed", 7, NULL,
+    add_integer( "goom-speed", 6, NULL,
                  SPEED_TEXT, SPEED_LONGTEXT, VLC_FALSE );
     set_callbacks( Open, Close );
     add_shortcut( "goom" );