hedgewars/uMisc.pas
changeset 10124 aabd1b75d5a3
parent 10108 c68cf030eded
child 10127 7f29a65aa1e4
equal deleted inserted replaced
10123:64e72781d344 10124:aabd1b75d5a3
   291     SDL_RectMake.w:= width;
   291     SDL_RectMake.w:= width;
   292     SDL_RectMake.h:= height;
   292     SDL_RectMake.h:= height;
   293 end;
   293 end;
   294 
   294 
   295 function GetTeamStatString(p: PTeam): shortstring;
   295 function GetTeamStatString(p: PTeam): shortstring;
   296 var s: ansistring;
   296 var s: shortstring;
   297 begin
   297 begin
   298     s:= p^.TeamName + ':' + IntToStr(p^.TeamHealth) + ':';
   298     s:= p^.TeamName + ':' + IntToStr(p^.TeamHealth) + ':';
   299     GetTeamStatString:= s;
   299     GetTeamStatString:= s;
   300 end;
   300 end;
   301 
   301