Changeset 315 for trunk/LocalPlayer/Term.pas
- Timestamp:
- Mar 18, 2021, 10:58:28 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Term.pas
r314 r315 2547 2547 Jump[0] := 999999; 2548 2548 GameMode := Command; 2549 for i := 0 to GrExt.Count - 1 do 2550 GrExt[i].ResetPixUsed; 2549 GrExt.ResetPixUsed; 2551 2550 IsoEngine.Reset; 2552 2551 Tribes.Init; … … 3512 3511 Canvas.Font.Assign(UniFont[ftSmall]); 3513 3512 InitButtons; 3514 EOT.Template := Templates ;3513 EOT.Template := Templates.Data; 3515 3514 end; 3516 3515 … … 4844 4843 end; 4845 4844 if GameMode <> cMovie then 4846 ImageOp_BCC(TopBar, Templates , 2, 1, 145, 38, 36, 36, $BFBF20, $4040DF);4845 ImageOp_BCC(TopBar, Templates.Data, 2, 1, 145, 38, 36, 36, $BFBF20, $4040DF); 4847 4846 if MyRO.nCity > 0 then 4848 4847 begin … … 4860 4859 4861 4860 // treasury section 4862 ImageOp_BCC(TopBar, Templates , xTreasurySection + 8, 1, 145, 1, 36, 36,4861 ImageOp_BCC(TopBar, Templates.Data, xTreasurySection + 8, 1, 145, 1, 36, 36, 4863 4862 $40A040, $4030C0); 4864 4863 s := IntToStr(TrueMoney); … … 4867 4866 if MyRO.Government <> gAnarchy then 4868 4867 begin 4869 ImageOp_BCC(TopBar, Templates , xTreasurySection + 48, 22, 124, 1, 14, 14,4868 ImageOp_BCC(TopBar, Templates.Data, xTreasurySection + 48, 22, 124, 1, 14, 14, 4870 4869 $0000C0, $0080C0); 4871 4870 if TaxSum >= 0 then … … 4878 4877 4879 4878 // research section 4880 ImageOp_BCC(TopBar, Templates , xResearchSection + 8, 1, 145, 75, 36, 36,4879 ImageOp_BCC(TopBar, Templates.Data, xResearchSection + 8, 1, 145, 75, 36, 36, 4881 4880 $FF0000, $00FFE0); 4882 4881 if MyData.FarTech <> adNexus then … … 4929 4928 if (MyData.FarTech <> adNexus) and (ScienceSum > 0) then 4930 4929 begin 4931 ImageOp_BCC(TopBar, Templates , xResearchSection + 48 + CostFactor + 11,4930 ImageOp_BCC(TopBar, Templates.Data, xResearchSection + 48 + CostFactor + 11, 4932 4931 22, 124, 1, 14, 14, $0000C0, $0080C0); 4933 4932 s := Format(Phrases.Lookup('TECHGAIN'), [ScienceSum]);
Note:
See TracChangeset
for help on using the changeset viewer.