소스 검색

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

git-svn-id: trunk@30995 -
Károly Balogh 10 년 전
부모
커밋
bea2a50cc5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/morphunits/src/utility.pas

+ 2 - 2
packages/morphunits/src/utility.pas

@@ -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;