hedgewars/uLand.pas
changeset 2692 ce9992075118
parent 2665 50b4e544c163
child 2699 249adefa9c1c
--- a/hedgewars/uLand.pas	Sun Jan 10 00:52:20 2010 +0000
+++ b/hedgewars/uLand.pas	Tue Jan 12 07:32:15 2010 +0000
@@ -28,7 +28,7 @@
 {$ENDIF}
 	uConsts;
 type TLandArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of LongWord;
-TCollisionArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of Word;
+	TCollisionArray = packed array[0 .. LAND_HEIGHT - 1, 0 .. LAND_WIDTH - 1] of Word;
 	TPreview  = packed array[0..127, 0..31] of byte;
 	TDirtyTag = packed array[0 .. LAND_HEIGHT div 32 - 1, 0 .. LAND_WIDTH div 32 - 1] of byte;
 
@@ -43,7 +43,7 @@
 procedure GenMap;
 function  GenPreview: TPreview;
 procedure CheckLandDigest(s: shortstring);
-function LandBackPixel(x, y: LongInt): LongWord;
+function  LandBackPixel(x, y: LongInt): LongWord;
 
 implementation
 uses uConsole, uStore, uMisc, uRandom, uTeams, uLandObjects, uSHA, uIO, uAmmos, uLandTexture;