You've already forked lazarus-ccr
fpchess: Increases the default kcchess difficulty
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1907 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user