Branch: Tag:

1999-05-19

1999-05-19 03:47:48 by Per Hedbor <ph@opera.com>

fixed scale=float in the image cache

Rev: server/base_server/roxen.pike:1.282

1:   /* -  * $Id: roxen.pike,v 1.281 1999/05/18 10:50:23 per Exp $ +  * $Id: roxen.pike,v 1.282 1999/05/19 03:47:48 per Exp $    *    * The Roxen Challenger main program.    *
7:    */      // ABS and suicide systems contributed freely by Francesco Chemolli - constant cvs_version="$Id: roxen.pike,v 1.281 1999/05/18 10:50:23 per Exp $"; + constant cvs_version="$Id: roxen.pike,v 1.282 1999/05/19 03:47:48 per Exp $";      object backend_thread;   object argcache;
1935:    if( alpha )    alpha = alpha->scale( x, y );    } -  else +  else if( (float)args->scale < 3.0)    { -  reply->scale( ((float)args->scale)/100.0 ); +  reply = reply->scale( ((float)args->scale) );    if( alpha ) -  alpha->scale( ((float)args->scale)/100.0 ); +  alpha = alpha->scale( ((float)args->scale) );    }    }