aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-23 20:16:09 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-23 20:16:09 +0000
commitda300facd4d36730c3bbf69940d57e750b1bc3e4 (patch)
tree58af7fefb447d2a3ddbdc2e68efac00567bde3b1 /unicode/src
parent61bed792063274e3d16d2e78e77a9b843f979fb3 (diff)
downloadusdx-da300facd4d36730c3bbf69940d57e750b1bc3e4.tar.gz
usdx-da300facd4d36730c3bbf69940d57e750b1bc3e4.tar.xz
usdx-da300facd4d36730c3bbf69940d57e750b1bc3e4.zip
According to the Delphi doc for INFINITY it should not be used in comparisons. Use IsInfinit() instead.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1902 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'unicode/src')
-rw-r--r--unicode/src/base/UFont.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/unicode/src/base/UFont.pas b/unicode/src/base/UFont.pas
index 8baab629..72409ac1 100644
--- a/unicode/src/base/UFont.pas
+++ b/unicode/src/base/UFont.pas
@@ -1574,9 +1574,9 @@ begin
end;
// if left or bottom bound was not set, set them to 0
- if (Result.Left = Infinity) then
+ if (IsInfinite(Result.Left)) then
Result.Left := 0.0;
- if (Result.Bottom = Infinity) then
+ if (IsInfinite(Result.Bottom)) then
Result.Bottom := 0.0;
end;