Ignore:
Timestamp:
May 30, 2023, 11:31:10 AM (11 months ago)
Author:
chronos
Message:
  • Modified: Removed U prefix from unit names.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/IsoEngine.pas

    r447 r456  
    66uses
    77  Protocol, ClientTools, ScreenTools, Tribes, LCLIntf, LCLType, SysUtils,
    8   Classes, Graphics, UPixelPointer, UGraphicSet;
     8  Classes, Graphics, PixelPointer, GraphicSet;
    99
    1010const
     
    255255  for ySrc := 0 to TerrainIconLines - 1 do begin
    256256    for I := 0 to yyt * 3 - 1 do
    257       MaskLine[I] := PixelPointer(Mask24, ScaleToNative(0),
     257      MaskLine[I] := TPixelPointer.Create(Mask24, ScaleToNative(0),
    258258        ScaleToNative(1 + ySrc * (yyt * 3 + 1) + I));
    259259    for xSrc := 0 to TerrainIconCols - 1 do begin
     
    14241424begin
    14251425  FOutput.BeginUpdate;
    1426   Line := PixelPointer(FOutput, ScaleToNative(x0), ScaleToNative(y0));
     1426  Line := TPixelPointer.Create(FOutput, ScaleToNative(x0), ScaleToNative(y0));
    14271427  for Y := 0 to ScaleToNative(Height) - 1 do begin
    14281428    y_n := (ScaleFromNative(Y) + y0 - ym) / yyt;
Note: See TracChangeset for help on using the changeset viewer.