Roxen.git/
server/
base_server/
roxen.pike
Branch:
Tag:
Non-build tags
All tags
No tags
1999-05-19
1999-05-19 03:47:48 by Per Hedbor <ph@opera.com>
3255b16be3d918837a2c3f376762e3b2456cc5d9 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
5.2
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) );
} }