Changeset 505 for trunk/Start.pas
- Timestamp:
- Dec 24, 2023, 11:24:57 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Start.pas
r496 r505 649 649 650 650 if Page = pgMain then begin 651 651 if SelectedAction <> maNone then // mark selected action 652 652 for I := 0 to (ClientWidth - 2 * ActionSideBorder) div wBuffer + 1 do 653 653 begin … … 714 714 for I := 12 to 19 do 715 715 if (I < 13) or (I > 17) then begin 716 BitBltCanvas(Canvas, 9 + I * 27, yLogo - 2, Ornament.Width, Ornament.Height, 717 HGrSystem2.Mask.Canvas, Ornament.Left, Ornament.Top, SRCAND); 718 BitBltCanvas(Canvas, 9 + I * 27, yLogo - 2, Ornament.Width, Ornament.Height, 719 HGrSystem2.Data.Canvas, Ornament.Left, Ornament.Top, SRCPAINT); 716 Sprite(Canvas, 9 + I * 27, yLogo - 2, Ornament); 720 717 end; 721 718 PaintLogo(Canvas, 69 + 11 * 27, yLogo, MainTexture.ColorBevelLight, … … 796 793 S := Phrases.Lookup('AUTODIFF', AutoDiff - 1); 797 794 RisedTextOut(Canvas, 272 - BiColorTextWidth(Canvas, S), y0Mini + 61, S); 798 799 795 for I := 0 to 19 do 800 796 if (I < 2) or (I > 6) then begin 801 BitBltCanvas(Canvas, 9 + I * 27, yLogo - 2, Ornament.Width, Ornament.Height, 802 HGrSystem2.Mask.Canvas, Ornament.Left, Ornament.Top, SRCAND); 803 BitBltCanvas(Canvas, 9 + I * 27, yLogo - 2, Ornament.Width, Ornament.Height, 804 HGrSystem2.Data.Canvas, Ornament.Left, Ornament.Top, SRCPAINT); 797 Sprite(Canvas, 9 + I * 27, yLogo - 2, Ornament); 805 798 end; 806 799 PaintLogo(Canvas, 69, yLogo, MainTexture.ColorBevelLight,
Note:
See TracChangeset
for help on using the changeset viewer.