diff -r 7ac6699b6228 -r e1029baf2483 hedgewars/uLandTemplates.pas --- a/hedgewars/uLandTemplates.pas Mon Nov 05 22:03:26 2012 -0500 +++ b/hedgewars/uLandTemplates.pas Mon Nov 05 22:18:47 2012 -0500 @@ -24,12 +24,10 @@ const NTPX = Low(SmallInt); -type TRectArray = array[0..64] of TSDL_Rect; - PRectArray = ^TRectArray; - TPointArray = array[0..64] of TPoint; +type TPointArray = array[0..64] of TSDL_Rect; PPointArray = ^TPointArray; TEdgeTemplate = record - BasePoints: PRectArray; + BasePoints: PPointArray; BasePointsCount: Longword; FillPoints: PPointArray; FillPointsCount: Longword;