hedgewars/uLocale.pas
changeset 2144 c76a2f7bd452
parent 2143 ad05f6b2d1c0
child 2177 c045698e044f
--- a/hedgewars/uLocale.pas	Tue Jun 02 18:27:15 2009 +0000
+++ b/hedgewars/uLocale.pas	Tue Jun 02 18:43:00 2009 +0000
@@ -54,12 +54,10 @@
     f: textfile;
     a, b, c: LongInt;
 	first: array[TEventId] of boolean;
+	e: TEventId;
 begin
 
-// clear event locales
-//for a:= 0 to ord(High(TEventId)) do trevt_n[TEventId(a)]:= 0;
-
-for a:= ord(Low(TEventId)) to ord(High(TEventId)) do first[TEventId(a)]:= true;
+for e:= Low(TEventId) to High(TEventId) do first[e]:= true;
 
 {$I-}
 Assign(f, FileName);