diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-13 11:02:53 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-13 11:02:53 +0200 |
commit | 5912966c2ee8e1438c63c8c2df3b5e4e08122d00 (patch) | |
tree | 4e67b328e82f2856e5d0ddd97e05a1fbefe5804d /src/corelib | |
parent | f2d0092a4e17d0fc4e47e9ea82b36cdd2c254e86 (diff) | |
download | fpGUI-5912966c2ee8e1438c63c8c2df3b5e4e08122d00.tar.xz |
agg: FT_Fixed type was hard-coded to 32-bit systems.
Now it is 32/64 bit enabled. I believe this now finally makes
text rendering work under 64-bit Linux.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/render/software/agg_font_freetype_lib.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/render/software/agg_font_freetype_lib.pas b/src/corelib/render/software/agg_font_freetype_lib.pas index 46942b31..c174c64d 100644 --- a/src/corelib/render/software/agg_font_freetype_lib.pas +++ b/src/corelib/render/software/agg_font_freetype_lib.pas @@ -100,9 +100,9 @@ type FT_ULong = longword; FT_Pos = longint; {$ENDIF} - FT_Fixed = longint; FT_Error = longint; FT_F26Dot6 = longint; + FT_Fixed = FT_Long; FT_Byte_ptr = ^FT_Byte; FT_Short_ptr = ^FT_Short; |