- Timestamp:
- Jan 11, 2017, 8:31:41 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Integrated.lpi
r39 r47 438 438 <StackChecks Value="True"/> 439 439 </Checks> 440 <TargetCPU Value="i386"/> 441 <TargetOS Value="win32"/> 440 442 </CodeGeneration> 441 443 <Linking> -
trunk/LocalPlayer/CityType.pas
r38 r47 6 6 uses 7 7 Protocol, ClientTools, Term, ScreenTools, BaseWin, LCLIntf, LCLType, 8 9 Messages, SysUtils, Classes, Graphics, Controls, Forms, 10 ButtonB, ExtCtrls, ButtonA, ButtonBase; 8 SysUtils, Classes, Graphics, Controls, Forms, 9 ButtonB, ExtCtrls; 11 10 12 11 type -
trunk/LocalPlayer/Draft.pas
r40 r47 7 7 Protocol, ClientTools, Term, ScreenTools, PVSB, BaseWin, 8 8 9 LCLIntf, LCLType, LMessages, Messages,SysUtils, Classes, Graphics, Controls, Forms, ExtCtrls,9 LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, Forms, ExtCtrls, 10 10 ButtonA, 11 ButtonB, ButtonBase,Area;11 ButtonB, Area; 12 12 13 13 type -
trunk/LocalPlayer/NatStat.pas
r40 r47 7 7 Protocol, ClientTools, Term, ScreenTools, BaseWin, 8 8 9 LCLIntf, LCLType, LMessages, Messages,SysUtils, Classes, Graphics, Controls, Forms,10 ButtonB ase, ButtonB, ButtonC, Menus, EOTButton;9 LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, Forms, 10 ButtonB, ButtonC, Menus, EOTButton; 11 11 12 12 type -
trunk/LocalPlayer/Term.pas
r38 r47 9 9 {$ENDIF} 10 10 Protocol, Tribes, PVSB, ClientTools, ScreenTools, BaseWin, Messg, ButtonBase, 11 12 LCLIntf, LCLType, LMessages, Messages, SysUtils, Classes, Graphics, Controls, 13 Forms, Menus, 14 ExtCtrls, dateutils, Platform, 15 ButtonA, ButtonB, ButtonC, EOTButton, Area; 11 LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, 12 Forms, Menus, ExtCtrls, dateutils, Platform, ButtonB, ButtonC, EOTButton, Area; 16 13 17 14 const … … 431 428 uses 432 429 Directories, IsoEngine, CityScreen, Draft, MessgEx, Select, CityType, Help, 433 UnitStat, Diplomacy, Inp, Log, Diagram, NatStat, Wonders, Enhance, Nego, 434 Battle, Rates, 435 TechTree, 436 437 Registry; 430 UnitStat, Log, Diagram, NatStat, Wonders, Enhance, Nego, 431 Battle, Rates, TechTree, Registry; 438 432 439 433 {$R *.lfm} … … 4958 4952 GotoOnly: boolean; 4959 4953 begin 4954 Dist := 0; 4960 4955 if ClientMode >= scContact then 4961 4956 exit; -
trunk/ScreenTools.pas
r46 r47 9 9 {$ENDIF} 10 10 StringTables, 11 LCLIntf, LCLType, LMessages, Messages,SysUtils, Classes, Graphics, Controls,11 LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, 12 12 Forms, Menus; 13 13 … … 1551 1551 LogoBuffer := TBitmap.create; 1552 1552 LogoBuffer.PixelFormat := pf24bit; 1553 LogoBuffer.Width := wBBook; 1554 LogoBuffer.Height := hBBook; 1553 LogoBuffer.SetSize(wBBook, hBBook); 1555 1554 1556 1555 section := ftNormal; … … 1592 1591 UniFont[section].Style := UniFont[section].Style + [fsItalic]; 1593 1592 end; 1593 // 0.8 constant is compensation for Lazarus as size of fonts against Delphi differs 1594 1594 UniFont[section].size := 1595 round(size * 72 / UniFont[section].PixelsPerInch );1596 end 1597 end 1595 round(size * 72 / UniFont[section].PixelsPerInch * 0.8); 1596 end; 1597 end; 1598 1598 end; 1599 1599 CloseFile(fontscript);
Note:
See TracChangeset
for help on using the changeset viewer.