* fixed 'data element too large' error in i8086 far data memory models

git-svn-id: trunk@27390 -
This commit is contained in:
nickysn 2014-03-30 18:17:37 +00:00
parent 096bba90da
commit 070955bcd0

View File

@ -299,7 +299,7 @@ unit typinfo;
TProcInfoProc = Procedure(PropInfo : PPropInfo) of object;
PPropList = ^TPropList;
TPropList = array[0..{$ifdef cpu16}32765 div sizeof(PPropInfo){$else}65535{$endif}] of PPropInfo;
TPropList = array[0..{$ifdef cpu16}(32768 div sizeof(PPropInfo))-2{$else}65535{$endif}] of PPropInfo;
const
tkString = tkSString;