--- a/hedgewars/uCommandHandlers.pas Sun Nov 11 16:53:16 2012 +0100
+++ b/hedgewars/uCommandHandlers.pas Sun Nov 11 17:15:19 2012 +0100
@@ -185,37 +185,37 @@
procedure chCurD_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
CursorMovementY:= 0;
end;
procedure chCurL_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
CursorMovementX:= -1;
end;
procedure chCurL_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
CursorMovementX:= 0;
end;
procedure chCurR_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
CursorMovementX:= 1;
end;
procedure chCurR_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
CursorMovementX:= 0;
end;
procedure chLeft_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -228,7 +228,7 @@
procedure chLeft_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
exit;
if not isExternalSource then
@@ -240,7 +240,7 @@
procedure chRight_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -253,7 +253,7 @@
procedure chRight_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
exit;
if not isExternalSource then
@@ -265,7 +265,7 @@
procedure chUp_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -278,7 +278,7 @@
procedure chUp_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
exit;
if not isExternalSource then
@@ -290,7 +290,7 @@
procedure chDown_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -303,7 +303,7 @@
procedure chDown_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
exit;
if not isExternalSource then
@@ -315,7 +315,7 @@
procedure chPrecise_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -328,7 +328,7 @@
procedure chPrecise_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
exit;
if not isExternalSource then
@@ -340,7 +340,7 @@
procedure chLJump(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -353,7 +353,7 @@
procedure chHJump(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -366,7 +366,7 @@
procedure chAttack_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
bShowFinger:= false;
@@ -386,7 +386,7 @@
procedure chAttack_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
exit;
with CurrentHedgehog^.Gear^ do
@@ -401,7 +401,7 @@
procedure chSwitch(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
if not isExternalSource then
@@ -413,9 +413,10 @@
end;
procedure chNextTurn(var s: shortstring);
-var gi: PGear;
+var i : Longword;
+ gi : PGear;
begin
- s:= s; // avoid compiler hint
+ s:=s; // avoid compiler hint
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true);
@@ -522,13 +523,13 @@
procedure chPut(var s: shortstring);
begin
- s:= s; // avoid compiler hint
+ s:=s; // avoid compiler hint
doPut(0, 0, false);
end;
procedure chCapture(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
flagMakeCapture:= true
end;
@@ -586,7 +587,7 @@
procedure chAmmoMenu(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH then
bShowAmmoMenu:= true
else
@@ -611,19 +612,19 @@
procedure chVol_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
inc(cVolumeDelta, 3)
end;
procedure chVol_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
dec(cVolumeDelta, 3)
end;
procedure chFindhh(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if CheckNoTeamOrHH or isPaused then
exit;
@@ -645,7 +646,7 @@
procedure chPause(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if gameType <> gmtNet then
isPaused:= not isPaused;
@@ -657,7 +658,7 @@
procedure chRotateMask(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
if ((GameFlags and gfInvulnerable) = 0) then
cTagsMask:= cTagsMasks[cTagsMask]
else
@@ -666,34 +667,34 @@
procedure chSpeedup_p(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
SpeedStart:= RealTicks;
isSpeed:= true
end;
procedure chSpeedup_m(var s: shortstring);
begin
-s:= s; // avoid compiler hint
+s:=s; // avoid compiler hint
isSpeed:= false
end;
procedure chZoomIn(var s: shortstring);
begin
- s:= s; // avoid compiler hint
+ s:=s; // avoid compiler hint
if ZoomValue < cMinZoomLevel then
ZoomValue:= ZoomValue + cZoomDelta;
end;
procedure chZoomOut(var s: shortstring);
begin
- s:= s; // avoid compiler hint
+ s:=s; // avoid compiler hint
if ZoomValue > cMaxZoomLevel then
ZoomValue:= ZoomValue - cZoomDelta;
end;
procedure chZoomReset(var s: shortstring);
begin
- s:= s; // avoid compiler hint
+ s:=s; // avoid compiler hint
ZoomValue:= cDefaultZoomLevel;
end;