summaryrefslogtreecommitdiff
path: root/src/DataTypes.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/DataTypes.pas')
-rw-r--r--src/DataTypes.pas8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DataTypes.pas b/src/DataTypes.pas
index 9c029193..5ac9e8aa 100644
--- a/src/DataTypes.pas
+++ b/src/DataTypes.pas
@@ -20,10 +20,10 @@ type
pInt8 = ^byte;
ULong = Cardinal;
- PCharArray = array[ 0..0 ] of PCHar;
- Int32Array = array[ 0..0 ] of Int32;
- Int16Array = array[ 0..0 ] of Int16;
- Int8Array = array[ 0..0 ] of Int8;
+ PCharArray = packed array[ 0..0 ] of PCHar;
+ Int32Array = packed array[ 0..0 ] of Int32;
+ Int16Array = packed array[ 0..0 ] of Int16;
+ Int8Array = packed array[ 0..0 ] of Int8;
PCharArrayPointer = ^PCharArray;
Int32ArrayPointer = ^Int32Array;