hedgewars/uGears.pas
changeset 3038 4e48c276a468
parent 3032 9c190d3c165b
child 3039 057486a3a6c0
--- a/hedgewars/uGears.pas	Sun Mar 21 18:42:34 2010 +0000
+++ b/hedgewars/uGears.pas	Sun Mar 21 19:02:03 2010 +0000
@@ -74,8 +74,8 @@
     StepSoundTimer: LongInt;
     StepSoundChannel: LongInt;
     
-procedure init_uGears;
-procedure free_uGears;
+procedure initModule;
+procedure freeModule;
 function  AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear;
 procedure ProcessGears;
 procedure ResetUtilities;
@@ -2254,7 +2254,7 @@
     end
 end;
 
-procedure init_uGears;
+procedure initModule;
 begin
     CurAmmoGear:= nil;
     GearsList:= nil;
@@ -2268,7 +2268,7 @@
     PrvInactive:= false;
 end;
 
-procedure free_uGears;
+procedure freeModule;
 begin
     FreeGearsList();
 end;