Changeset 486 for trunk/LocalPlayer/IsoEngine.pas
- Timestamp:
- Dec 8, 2023, 8:25:31 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/IsoEngine.pas
r469 r486 193 193 begin 194 194 // prepare age 2+3 cities 195 for age := 2 to 3 do196 for size := 0 to 3 do195 for Age := 2 to 3 do 196 for Size := 0 to 3 do 197 197 with Pictures[Age, Size] do 198 198 FindPosition(HGrCities, Size * (xxt * 2 + 1), (Age - 2) * (yyt * 3 + 1), … … 738 738 begin 739 739 Age := GetAge(CityInfo.Owner); 740 if CityInfo. size < 5 then740 if CityInfo.Size < 5 then 741 741 xGr := 0 742 else if CityInfo. size < 9 then742 else if CityInfo.Size < 9 then 743 743 xGr := 1 744 else if CityInfo. size < 13 then744 else if CityInfo.Size < 13 then 745 745 xGr := 2 746 746 else … … 793 793 yShield := Y - 2 * yyt + cpic.yShield; 794 794 end; 795 S := IntToStr(CityInfo. size);795 S := IntToStr(CityInfo.Size); 796 796 LabelLength := FOutput.Canvas.TextWidth(S); 797 797 FillRect(xShield, yShield, LabelLength + 4, 16, $000000);
Note:
See TracChangeset
for help on using the changeset viewer.