Changeset 469 for trunk/LocalPlayer/CityScreen.pas
- Timestamp:
- Dec 3, 2023, 8:33:43 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/CityScreen.pas
r468 r469 8 8 Protocol, ClientTools, ScreenTools, IsoEngine, BaseWin, LCLIntf, LCLType, 9 9 Messages, SysUtils, Classes, ButtonA, ButtonC, Area, GraphType, Texture, 10 System.UITypes,11 10 {$IFDEF DPI}Dpi.Graphics, Dpi.Controls, Dpi.Forms, Dpi.ExtCtrls{$ELSE} 12 11 Graphics, Controls, Forms, ExtCtrls{$ENDIF}; … … 195 194 procedure TCityDlg.FormCreate(Sender: TObject); 196 195 begin 197 inherited;198 196 RedTex := TTexture.Create; 199 197 BarTex := TTexture.Create; … … 277 275 278 276 UnshareBitmap(Back); 279 BitBltCanvas(Back.Canvas, 0, 0, ClientWidth, ClientHeight,277 BitBltCanvas(Back.Canvas, 0, 0, Width, Height, 280 278 MainTexture.Image.Canvas, 0, 0); 281 ImageOp_B(Back, Template, 0, 0, 0, 0, ClientWidth, ClientHeight);279 ImageOp_B(Back, Template, 0, 0, 0, 0, Width, Height); 282 280 end; 283 281 end; … … 364 362 end; 365 363 end; 366 Brush. style := TBrushStyle.bsClear;364 Brush.Style := TBrushStyle.bsClear; 367 365 end; 368 366 end; … … 539 537 Brush.Color := $FFFFFF; 540 538 FillRect(Rect(8, 7, 36, 32)); 541 Brush. style := TBrushStyle.bsClear;539 Brush.Style := TBrushStyle.bsClear; 542 540 Font.Color := $000000; 543 541 S := IntToStr(C.Size);
Note:
See TracChangeset
for help on using the changeset viewer.