hedgewars/uLandTexture.pas
changeset 2376 ece7b87f1334
parent 2248 26e11cb27c61
child 2587 0dfa56a8513c
--- a/hedgewars/uLandTexture.pas	Thu Sep 10 15:22:34 2009 +0000
+++ b/hedgewars/uLandTexture.pas	Thu Sep 10 15:29:28 2009 +0000
@@ -25,7 +25,7 @@
 procedure FreeLand;
 
 implementation
-uses uMisc, uLand, uStore, 
+uses uMisc, uLand, uStore,
 {$IFDEF GLES11}
 	gles11,
 {$ELSE}
@@ -51,7 +51,7 @@
 begin
 for ty:= 0 to TEXSIZE - 1 do
 	Move(LandPixels[y * TEXSIZE + ty, x * TEXSIZE], tmpPixels[ty, 0], sizeof(Longword) * TEXSIZE);
-	
+
 Pixels:= @tmpPixels
 end;
 
@@ -61,7 +61,7 @@
 for ty:= 0 to TEXSIZE - 1 do
 	for tx:= 0 to TEXSIZE - 1 do
 		tmpPixels[ty, tx]:= Land[y * TEXSIZE + ty, x * TEXSIZE + tx] or $FF000000;
-	
+
 Pixels2:= @tmpPixels
 end;