summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/DataTypes.pas8
-rw-r--r--src/HelpTopic.pas2
2 files changed, 5 insertions, 5 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;
diff --git a/src/HelpTopic.pas b/src/HelpTopic.pas
index 10b22161..3f29bf69 100644
--- a/src/HelpTopic.pas
+++ b/src/HelpTopic.pas
@@ -39,7 +39,7 @@ Type
end;
pHelpTopicSlot = ^ THelpTopicSlot;
- SlotArray = array[ 0..0 ] of THelpTopicSlot;
+ SlotArray = packed array[ 0..0 ] of THelpTopicSlot;
pSlotArray = ^SlotArray;