[script] Typo in the MathMax function

This commit is contained in:
Charlie Brej 2009-07-08 11:26:13 +01:00 committed by Ray Strode
parent 2b62c964bc
commit 74388bca11

View file

@ -8,8 +8,8 @@ fun MathMin (value_a, value_b){
return value_b;
}
fun MathMax (value, max){
if (value_a > value_a) return value_a;
fun MathMax (value_a, value_b){
if (value_a > value_b) return value_a;
return value_b;
}