From: beware Date: Mon, 27 Sep 2021 11:13:24 +0000 (+0000) Subject: make taddrint on i386 unsigned if possible X-Git-Url: http://www.lcore.org/git/lcore.git/commitdiff_plain/1be497efffd6a881a2b71226df816dbad37bd1ef make taddrint on i386 unsigned if possible git-svn-id: file:///svnroot/lcore/trunk@162 b1de8a11-f9be-4011-bde0-cc7ace90066a --- diff --git a/pgtypes.pas b/pgtypes.pas index a232262..9d42a06 100644 --- a/pgtypes.pas +++ b/pgtypes.pas @@ -9,10 +9,11 @@ unit pgtypes; interface {$include pgtypes.inc} +{$include uint32.inc} type {$ifdef i386} - taddrint=longint; + taddrint=uint32; {$else} {$ifdef cpux64} taddrint=int64;