hedgewars/uGearsHedgehog.pas
changeset 10147 9a772dc5dfbe
parent 10146 1fb6d8cc4626
child 10178 949b51ca18c6
--- 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.