diff -r 204e6b2885bc -r 0dfa56a8513c hedgewars/uFloat.pas --- a/hedgewars/uFloat.pas Sun Oct 25 15:55:49 2009 +0000 +++ b/hedgewars/uFloat.pas Sun Oct 25 16:35:09 2009 +0000 @@ -29,14 +29,14 @@ 0: (Frac, Round: Longword); 1: (QWordValue : QWord); end; -{$else FPC_LITTLE_ENDIAN} +{$else} type hwFloat = record isNegative: boolean; case byte of 0: (Round, Frac: Longword); 1: (QWordValue : QWord); end; -{$endif FPC_LITTLE_ENDIAN} +{$endif} function int2hwFloat (const i: LongInt) : hwFloat;