From f44338de191d71e910c7c5ff333f43529aee9d1e Mon Sep 17 00:00:00 2001 From: sekelsenmat Date: Tue, 6 Sep 2011 12:27:09 +0000 Subject: [PATCH] fpchess: Increases the default kcchess difficulty git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1907 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- applications/fpchess/engines/kcchess/mod_kcchess.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/fpchess/engines/kcchess/mod_kcchess.pas b/applications/fpchess/engines/kcchess/mod_kcchess.pas index fc63cfec6..879be53ba 100644 --- a/applications/fpchess/engines/kcchess/mod_kcchess.pas +++ b/applications/fpchess/engines/kcchess/mod_kcchess.pas @@ -240,12 +240,12 @@ end; procedure TKCChessModule.CreateUserInterface; begin textDifficulty := TStaticText.Create(nil); - textDifficulty.SetBounds(20, 20, 180, 50); - textDifficulty.Caption := 'Difficulty (3=easiest)'; + textDifficulty.SetBounds(10, 10, 180, 50); + textDifficulty.Caption := 'Difficulty (3=easiest, 9=hardest and slowest)'; spinDifficulty := TSpinEdit.Create(nil); spinDifficulty.SetBounds(200, 20, 50, 50); - spinDifficulty.Value := 3; + spinDifficulty.Value := 6; spinDifficulty.MinValue := 3; spinDifficulty.MaxValue := 9; end;