summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/fpg_base.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/fpg_base.pas b/src/corelib/fpg_base.pas
index 0da8cce8..3c9e69d9 100644
--- a/src/corelib/fpg_base.pas
+++ b/src/corelib/fpg_base.pas
@@ -34,8 +34,8 @@ uses
type
TfpgCoord = integer; // we might use floating point coordinates in the future...
TfpgColor = type longword; // Always in AARRGGBB (Alpha, Red, Green, Blue) format!!
- TfpgString = type string;
- TfpgChar = type string[4];
+ TfpgString = type AnsiString;
+ TfpgChar = type String[4];
PPoint = ^TPoint;