X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=hacks%2Fglx%2Fgears.c;fp=hacks%2Fglx%2Fgears.c;h=61599f9ae5e372ed490379bea978101acf41f69c;hp=5a8fd86f2eb82a698e79fc7d48179cca591c13d5;hb=d5186197bc394e10a4402f7f6d23fbb14103bc50;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e diff --git a/hacks/glx/gears.c b/hacks/glx/gears.c index 5a8fd86f..61599f9a 100644 --- a/hacks/glx/gears.c +++ b/hacks/glx/gears.c @@ -238,7 +238,8 @@ new_gear (ModeInfo *mi, gear *parent) double pix = g->tooth_h * MI_HEIGHT(mi); /* approx. tooth size in pixels */ if (pix <= 2.5) g->size = INVOLUTE_SMALL; else if (pix <= 3.5) g->size = INVOLUTE_MEDIUM; - else g->size = INVOLUTE_LARGE; + else if (pix <= 25) g->size = INVOLUTE_LARGE; + else g->size = INVOLUTE_HUGE; } g->base_p = !parent;