mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 06:46:05 +02:00
* fixed 'data element too large' error in i8086 far data memory models
git-svn-id: trunk@27390 -
This commit is contained in:
parent
096bba90da
commit
070955bcd0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user