fix for float operator '<'. thanks to john slaten

SVN revision: 13907
This commit is contained in:
tsauerbeck 2005-03-25 21:28:43 +00:00 committed by tsauerbeck
parent cc3bcdffcd
commit 4abf2af2f4
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ stock bool:operator>=(oper1, Float:oper2)
stock bool:operator<(Float:oper1, Float:oper2)
return float_cmp(oper1, oper2) < 0;
stock bool:operator<(Float:oper1, oper2)
return float_cmp(oper1, float_(oper2)) < 0;
return float_cmp(oper1, float(oper2)) < 0;
stock bool:operator<(oper1, Float:oper2)
return float_cmp(float(oper1), oper2) < 0;
stock bool:operator<=(Float:oper1, Float:oper2)