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/Term.pas

    r447 r456  
    1414  LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, DrawDlg, Types,
    1515  Forms, Menus, ExtCtrls, dateutils, Platform, ButtonB, ButtonC, EOTButton, Area,
    16   UGraphicSet, UMiniMap, IsoEngine;
     16  GraphicSet, MiniMap, IsoEngine;
    1717
    1818const
     
    591591uses
    592592  Directories, CityScreen, Draft, MessgEx, Select, CityType, Help,
    593   UnitStat, Log, Diagram, NatStat, Wonders, Enhance, Nego, UPixelPointer, Sound,
    594   Battle, Rates, TechTree, Registry, Global, UKeyBindings, CmdList;
     593  UnitStat, Log, Diagram, NatStat, Wonders, Enhance, Nego, PixelPointer, Sound,
     594  Battle, Rates, TechTree, Registry, Global, KeyBindings, CmdList;
    595595
    596596{$R *.lfm}
     
    680680  for ix := 0 to BigImp.Width div xSizeBig - 1 do
    681681    for iy := 0 to BigImp.Height div ySizeBig - 1 do begin
    682       PixelPtr := PixelPointer(BigImp, ScaleToNative(ix * xSizeBig),
     682      PixelPtr := TPixelPointer.Create(BigImp, ScaleToNative(ix * xSizeBig),
    683683        ScaleToNative(Cut + iy * ySizeBig));
    684684      for Y := 0 to ScaleToNative(ySizeBig - 2 * Cut) - 1 do begin
     
    718718  SmallImp.SetSize(nx, ny);
    719719  SmallImp.BeginUpdate;
    720   PixelPtr := PixelPointer(SmallImp);
     720  PixelPtr := TPixelPointer.Create(SmallImp);
    721721  for Y := 0 to ScaleToNative(ny) - 1 do begin
    722722    for X := 0 to ScaleToNative(nx) - 1 do begin
     
    68776877        begin
    68786878          BrushType := trix[I];
    6879           PanelPaint
     6879          PanelPaint;
    68806880        end
    68816881        else if (TroopLoc >= 0) then
Note: See TracChangeset for help on using the changeset viewer.