--- a/hedgewars/uLandTemplates.pas Thu Jan 29 14:49:47 2009 +0000
+++ b/hedgewars/uLandTemplates.pas Thu Jan 29 17:27:43 2009 +0000
@@ -21,7 +21,7 @@
uses SDLh;
{$INCLUDE options.inc}
-const NTPX = Low(TSDL_Rect.x);
+const NTPX = Low(TSDL_Rect.x);
type PPointArray = ^TPointArray;
TPointArray = array[0..64] of TSDL_Rect;
@@ -32,8 +32,9 @@
FillPointsCount: Longword;
BezierizeCount: Longword;
RandPassesCount: Longword;
- TemplateHeight, TemplateWidth: LongInt;
+ TemplateHeight, TemplateWidth: Longword;
canMirror, canFlip, isNegative, canInvert: boolean;
+ hasGirders: boolean;
end;
//////////////////////////////////////////////////////////////////////////////
@@ -83,6 +84,7 @@
RandPassesCount: 12;
TemplateHeight: 1024; TemplateWidth: 4096;
canMirror: true; canFlip: false; isNegative: true; canInvert: false;
+ hasGirders: false; // this map, and some other caves, are cramped enough and have plenty of ceiling. Maybe not all caves though
)
);