diff -r 550083f61a0e -r 6e01c5134eb5 hedgewars/uLandTemplates.pas --- a/hedgewars/uLandTemplates.pas Fri Nov 02 10:17:52 2012 +0400 +++ b/hedgewars/uLandTemplates.pas Fri Nov 02 20:57:20 2012 +0100 @@ -24,10 +24,12 @@ const NTPX = Low(SmallInt); -type TPointArray = array[0..64] of TSDL_Rect; +type TRectArray = array[0..64] of TSDL_Rect; + PRectArray = ^TRectArray; + TPointArray = array[0..64] of TPoint; PPointArray = ^TPointArray; TEdgeTemplate = record - BasePoints: PPointArray; + BasePoints: PRectArray; BasePointsCount: Longword; FillPoints: PPointArray; FillPointsCount: Longword;