hedgewars/uRandom.pas
changeset 7613 ce6ead3327b2
parent 7579 51724c98a74f
child 8026 4a4f21070479
child 8912 78ea1839aac9
--- a/hedgewars/uRandom.pas	Thu Aug 23 19:47:38 2012 +0200
+++ b/hedgewars/uRandom.pas	Mon Aug 27 17:40:16 2012 +0200
@@ -30,9 +30,6 @@
 interface
 uses uFloat;
 
-procedure initModule;
-procedure freeModule;
-
 procedure SetRandomSeed(Seed: shortstring); // Sets the seed that should be used for generating pseudo-random values.
 function  GetRandomf: hwFloat; overload; // Returns a pseudo-random hwFloat.
 function  GetRandom(m: LongWord): LongWord; overload; inline; // Returns a positive pseudo-random integer smaller than m.
@@ -99,15 +96,4 @@
 rndSign:= num
 end;
 
-procedure initModule;
-begin
-    n:= 54;
-    FillChar(cirbuf, 64*sizeof(Longword), 0);
-end;
-
-procedure freeModule;
-begin
-
-end;
-
 end.