diff -r ab6e949eb5cb -r 4e48c276a468 hedgewars/uMisc.pas --- a/hedgewars/uMisc.pas Sun Mar 21 18:42:34 2010 +0000 +++ b/hedgewars/uMisc.pas Sun Mar 21 19:02:03 2010 +0000 @@ -127,8 +127,8 @@ TextureList : PTexture; -procedure init_uMisc; -procedure free_uMisc; +procedure initModule; +procedure freeModule; procedure SplitBySpace(var a, b: shortstring); procedure SplitByChar(var a, b: ansistring; c: char); procedure movecursor(dx, dy: Integer); @@ -643,7 +643,7 @@ end; -procedure init_uMisc; +procedure initModule; {$IFNDEF IPHONEOS}var i: LongInt;{$ENDIF} begin cDrownSpeed.QWordValue := 257698038; // 0.06 @@ -758,7 +758,7 @@ end; -procedure free_uMisc; +procedure freeModule; begin //uRandom.DumpBuffer; while TextureList <> nil do FreeTexture(TextureList);