|
|
|
@ -534,10 +534,10 @@ |
|
|
|
|
for ( ; count > 0; count--, zone++ ) |
|
|
|
|
{ |
|
|
|
|
delta = stem_top - zone->org_bottom; |
|
|
|
|
if ( delta < 0 ) |
|
|
|
|
if ( delta < -blues->blue_fuzz ) |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
if ( stem_top <= zone->org_top ) |
|
|
|
|
if ( stem_top <= zone->org_top + blues->blue_fuzz) |
|
|
|
|
{ |
|
|
|
|
if ( no_shoots || delta <= blues->blue_threshold ) |
|
|
|
|
{ |
|
|
|
@ -556,10 +556,10 @@ |
|
|
|
|
for ( ; count > 0; count--, zone-- ) |
|
|
|
|
{ |
|
|
|
|
delta = zone->org_top - stem_bot; |
|
|
|
|
if ( delta < 0 ) |
|
|
|
|
if ( delta < -blues->blue_fuzz ) |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
if ( stem_bot >= zone->org_bottom ) |
|
|
|
|
if ( stem_bot >= zone->org_bottom - blues->blue_fuzz ) |
|
|
|
|
{ |
|
|
|
|
if ( no_shoots || delta < blues->blue_shift ) |
|
|
|
|
{ |
|
|
|
@ -680,6 +680,8 @@ |
|
|
|
|
? priv->blue_shift |
|
|
|
|
: 7; |
|
|
|
|
|
|
|
|
|
globals->blues.blue_fuzz = priv->blue_fuzz; |
|
|
|
|
|
|
|
|
|
globals->dimension[0].scale_mult = 0; |
|
|
|
|
globals->dimension[0].scale_delta = 0; |
|
|
|
|
globals->dimension[1].scale_mult = 0; |
|
|
|
|