Changeset 502 for trunk/LocalPlayer
- Timestamp:
- Dec 23, 2023, 1:50:31 PM (11 months ago)
- Location:
- trunk/LocalPlayer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Help.pas
r496 r502 1918 1918 LineFeed; 1919 1919 1920 //Self.Show;1921 1920 ScrollBar.Init(Count - 1, InnerHeight div 24); 1922 1921 ScrollBar.SetPos(sbPos); -
trunk/LocalPlayer/Term.pas
r498 r502 1575 1575 TestColorDistance := abs(Integer(UnusedTribeFiles.Objects[J]) 1576 1576 shr 16 and $FF - Tribe[I].Color shr 16 and $FF) + 1577 abs(Integer(UnusedTribeFiles.Objects[J]) shr 8 and1577 Abs(Integer(UnusedTribeFiles.Objects[J]) shr 8 and 1578 1578 $FF - Tribe[I].Color shr 8 and $FF) * 3 + 1579 abs(Integer(UnusedTribeFiles.Objects[J]) and1579 Abs(Integer(UnusedTribeFiles.Objects[J]) and 1580 1580 $FF - Tribe[I].Color and $FF) * 2; 1581 1581 if TestColorDistance < ColorDistance then … … 1721 1721 AdvIcon[adConscription] := 86 + dGround; 1722 1722 1723 UnusedTribeFiles := tstringlist.Create;1723 UnusedTribeFiles := TStringList.Create; 1724 1724 UnusedTribeFiles.Sorted := True; 1725 1725 TribeNames := tstringlist.Create;
Note:
See TracChangeset
for help on using the changeset viewer.