--- a/hedgewars/uGearsHedgehog.pas Wed Feb 19 19:10:11 2014 +0400
+++ b/hedgewars/uGearsHedgehog.pas Thu Feb 20 00:28:49 2014 +0400
@@ -1346,7 +1346,6 @@
procedure doStepHedgehog(Gear: PGear);
var tX: hwFloat;
begin
-AddFileLog('[HOG] -#' + inttostr(Gear^.uid) + ': ' + floattostr(Gear^.X) + ', ' + floattostr(Gear^.Y) + ' (' + floattostr(Gear^.dX) + ', ' + floattostr(Gear^.dY) + ')');
CheckGearDrowning(Gear);
if Gear = nil then exit;
tX:= Gear^.X;
@@ -1390,7 +1389,6 @@
else
doStepHedgehogDriven(Gear)
end;
-AddFileLog('[HOG] +#' + inttostr(Gear^.uid) + ': ' + floattostr(Gear^.X) + ', ' + floattostr(Gear^.Y) + ' (' + floattostr(Gear^.dX) + ', ' + floattostr(Gear^.dY) + ')');
end;
end.