diff -r 873022596d15 -r f8819c3dde54 hedgewars/uUtils.pas --- a/hedgewars/uUtils.pas Fri Jun 28 10:25:42 2013 +0400 +++ b/hedgewars/uUtils.pas Fri Jun 28 12:47:54 2013 -0400 @@ -21,7 +21,7 @@ unit uUtils; interface -uses uTypes, uFloat, GLunit; +uses uTypes, uFloat; procedure SplitBySpace(var a, b: shortstring); procedure SplitByChar(var a, b: shortstring; c: char); @@ -41,7 +41,7 @@ function StrToInt(s: shortstring): LongInt; function FloatToStr(n: hwFloat): shortstring; -function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; inline; +function DxDy2Angle(const _dY, _dX: hwFloat): real; inline; function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; function DxDy2AttackAnglef(const _dY, _dX: extended): LongInt; @@ -200,7 +200,7 @@ end; -function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; inline; +function DxDy2Angle(const _dY, _dX: hwFloat): real; inline; var dY, dX: Extended; begin dY:= hwFloat2Float(_dY);