It is global var
authorunc0rr
Fri, 06 Jul 2012 01:25:04 +0400
changeset 7343 ddb196c41387
parent 7341 d70478d265ec
child 7345 f253e225da15
child 7347 88685fbb2679
It is global var
hedgewars/uWorld.pas
--- a/hedgewars/uWorld.pas	Thu Jul 05 20:53:55 2012 +0400
+++ b/hedgewars/uWorld.pas	Fri Jul 06 01:25:04 2012 +0400
@@ -1589,9 +1589,10 @@
 isFirstFrame:= false
 end;
 
+var PrevSentPointTime: LongWord = 0;
+
 procedure MoveCamera;
 var EdgesDist, wdy, shs,z: LongInt;
-    PrevSentPointTime: LongWord = 0;
 begin
 {$IFNDEF MOBILE}
 if (not (CurrentTeam^.ExtDriven and isCursorVisible and (not bShowAmmoMenu))) and cHasFocus and (GameState <> gsConfirm) then
@@ -1601,7 +1602,7 @@
 if not PlacingHogs and (FollowGear <> nil) and (not isCursorVisible) and (not bShowAmmoMenu) and (not fastUntilLag) then
     if (not autoCameraOn) then
         FollowGear:= nil
-    else        
+    else
     if ((abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y)) > 4) then
         begin
         FollowGear:= nil;
@@ -1814,6 +1815,7 @@
     Frames:= 0;
     WorldDx:= -512;
     WorldDy:= -256;
+    PrevSentPointTime:= 0;
 
     FPS:= 0;
     CountTicks:= 0;