morphunits: have pointers in the hook structure instead of dwords. this matches classic Amiga, and serves its purpose better

git-svn-id: trunk@30995 -
This commit is contained in:
Károly Balogh 2015-06-06 23:37:57 +00:00
parent a8f875e660
commit bea2a50cc5

View File

@ -188,8 +188,8 @@ type
PHook = ^THook;
THook = packed record
h_MinNode : TMinNode;
h_Entry : Cardinal;
h_SubEntry: Cardinal;
h_Entry : Pointer;
h_SubEntry: Pointer;
h_Data : Pointer;
end;