Ignore:
Timestamp:
Dec 10, 2024, 10:38:11 AM (5 weeks ago)
Author:
chronos
Message:
  • Modified: Added more score information.
  • Fixed: Record only non-zero scores.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/FormScore.pas

    r108 r109  
    4343  with FScores[Item.Index] do begin
    4444    Item.Caption := DateTimeToStr(StartTime);
     45    Item.SubItems.Add(BoardSize);
    4546    Item.SubItems.Add(IntToStr(Score));
     47    Item.SubItems.Add(IntToStr(1 shl BiggestTile));
    4648    Item.SubItems.Add(IntToStr(Moves));
    4749    Item.SubItems.Add(IntToStr(UsedUndos));
    48     Item.SubItems.Add(BoardSize);
     50    Item.SubItems.Add(IntToStr(DisabledTiles));
     51    Item.SubItems.Add(IntToStr(UnmergeableTiles));
     52    Item.SubItems.Add(TimeToStr(Duration));
    4953  end;
    5054end;
Note: See TracChangeset for help on using the changeset viewer.