diff --git a/applications/fpchess/chessmodules.pas b/applications/fpchess/chessmodules.pas index 5fe244f0e..09d837492 100644 --- a/applications/fpchess/chessmodules.pas +++ b/applications/fpchess/chessmodules.pas @@ -10,7 +10,7 @@ uses chessgame; type - TChessModuleKind = (cmkSinglePlayer, cmkInternet, cmkAI); + TChessModuleKind = (cmkSameComputer, cmkInternet, cmkAgainstComputer); { TChessModule } diff --git a/applications/fpchess/engines/kcchess/mod_kcchess.pas b/applications/fpchess/engines/kcchess/mod_kcchess.pas index 8e1ee5ade..7c50ea6b9 100644 --- a/applications/fpchess/engines/kcchess/mod_kcchess.pas +++ b/applications/fpchess/engines/kcchess/mod_kcchess.pas @@ -211,7 +211,7 @@ begin inherited Create; Description := 'Play against the computer - KCChess Engine'; - Kind := cmkSinglePlayer; + Kind := cmkAgainstComputer; end; procedure TKCChessModule.CreateUserInterface; diff --git a/applications/fpchess/mod_fics.pas b/applications/fpchess/mod_fics.pas index ef1d8fcfd..f7b5237a0 100644 --- a/applications/fpchess/mod_fics.pas +++ b/applications/fpchess/mod_fics.pas @@ -60,7 +60,7 @@ begin );*) Description := 'Play online via the Free Internet Chess Server'; - Kind := cmkSinglePlayer; + Kind := cmkInternet; FICS_HOST := 'freechess.org'; FICS_PORT := 5000; diff --git a/applications/fpchess/mod_samecomputer.pas b/applications/fpchess/mod_samecomputer.pas index 47d22c3c3..90f31f6a4 100644 --- a/applications/fpchess/mod_samecomputer.pas +++ b/applications/fpchess/mod_samecomputer.pas @@ -39,7 +39,7 @@ begin inherited Create; Description := 'Play against a friend in the same computer'; - Kind := cmkSinglePlayer; + Kind := cmkSameComputer; end; procedure TSameComputerChessModule.CreateUserInterface;