hedgewars/uWorld.pas
changeset 14225 9c5ada6431eb
parent 14004 97e48a6c2535
child 14281 e754b516cc35
equal deleted inserted replaced
14224:43aa37d36f73 14225:9c5ada6431eb
   119 
   119 
   120 // helper functions to create the goal/game mode string
   120 // helper functions to create the goal/game mode string
   121 function AddGoal(s: ansistring; gf: longword; si: TGoalStrId; i: LongInt): ansistring;
   121 function AddGoal(s: ansistring; gf: longword; si: TGoalStrId; i: LongInt): ansistring;
   122 var t: ansistring;
   122 var t: ansistring;
   123 begin
   123 begin
   124 {$IFNDEF PAS2C}
       
   125     if (GameFlags and gf) <> 0 then
   124     if (GameFlags and gf) <> 0 then
   126         begin
   125         begin
   127         t:= inttostr(i);
   126         t:= inttostr(i);
   128         s:= s + FormatA(trgoal[si], t) + '|'
   127         s:= s + FormatA(trgoal[si], t) + '|'
   129         end;
   128         end;
   130 {$ENDIF}
       
   131     AddGoal:= s;
   129     AddGoal:= s;
   132 end;
   130 end;
   133 
   131 
   134 function AddGoal(s: ansistring; gf: longword; si: TGoalStrId): ansistring;
   132 function AddGoal(s: ansistring; gf: longword; si: TGoalStrId): ansistring;
   135 begin
   133 begin
   136 {$IFNDEF PAS2C}
       
   137     if (GameFlags and gf) <> 0 then
   134     if (GameFlags and gf) <> 0 then
   138         s:= s + trgoal[si] + '|';
   135         s:= s + trgoal[si] + '|';
   139 {$ENDIF}
       
   140     AddGoal:= s;
   136     AddGoal:= s;
   141 end;
   137 end;
   142 
   138 
   143 procedure InitWorld;
   139 procedure InitWorld;
   144 var i, t: LongInt;
   140 var i, t: LongInt;