diff -r af019fa70080 -r 8e95911cb86b hedgewars/uFloat.pas --- a/hedgewars/uFloat.pas Sat Nov 22 00:55:01 2014 +0300 +++ b/hedgewars/uFloat.pas Wed Dec 03 00:07:33 2014 +0300 @@ -370,8 +370,8 @@ function hwSqrt1(const t: hwFloat): hwFloat; const pwr = 8; // even value, feel free to adjust - rThreshold = 1 shl (pwr + 32); - lThreshold = 1 shl (pwr div 2 + 32); + rThreshold: QWord = 1 shl (pwr + 32); + lThreshold: QWord = 1 shl (pwr div 2 + 32); var l, r: QWord; c: hwFloat; begin