Changeset 328 for trunk/LocalPlayer/CityScreen.pas
- Timestamp:
- Mar 25, 2021, 3:02:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/CityScreen.pas
r325 r328 325 325 for i := 0 to 29 do 326 326 begin 327 for iix := 28to nImp - 1 do327 for iix := nWonder to nImp - 1 do 328 328 if (ImpPosition[iix] = i) and (c.Built[iix] > 0) then 329 329 begin … … 336 336 i := 30; 337 337 for iix := 0 to nImp do 338 if (c.Built[iix] > 0) and ((iix < 28) or (ImpPosition[iix] < 0)) then338 if (c.Built[iix] > 0) and ((iix < nWonder) or (ImpPosition[iix] < 0)) then 339 339 begin 340 340 FillRect(Rect(5 + 16 * (i mod 3) + 48 * (i div 18), … … 350 350 if iix <> imTrGoods then 351 351 begin 352 if (iix >= 28) and (ImpPosition[iix] >= 0) then352 if (iix >= nWonder) and (ImpPosition[iix] >= 0) then 353 353 i := ImpPosition[iix]; 354 354 if i < 36 then … … 827 827 Cnt := 0; 828 828 for iix := 0 to nImp - 1 do 829 if ((iix < 28) or (ImpPosition[iix] < 0)) and (c.Built[iix] > 0) then829 if ((iix < nWonder) or (ImpPosition[iix] < 0)) and (c.Built[iix] > 0) then 830 830 begin 831 831 i := Cnt - Page * 6; … … 838 838 else 839 839 begin 840 for iix := 28to nImp - 1 do840 for iix := nWonder to nImp - 1 do 841 841 begin 842 842 i := ImpPosition[iix] - 6 * ZoomArea;
Note:
See TracChangeset
for help on using the changeset viewer.