mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
reverse (back) sense of show-other option
This commit is contained in:
parent
baedbdff2c
commit
0474fda127
1 changed files with 3 additions and 4 deletions
|
@ -316,8 +316,7 @@ typedef struct _CmdInfoRec {
|
|||
|
||||
static CmdInfoRec CmdInfoRecs[] = {
|
||||
{ CMD_SKIP_GAMEOVER, false, "skip-final", "skip final scores display" }
|
||||
,{ CMD_SHOW_OTHERSCORES, false, "no-show-other",
|
||||
"do not show robot and remote scores" }
|
||||
,{ CMD_SHOW_OTHERSCORES, false, "show-other", "show robot/remote scores" }
|
||||
,{ CMD_HOSTIP, true, "hostip", "remote host ip address (for direct connect)" }
|
||||
,{ CMD_DICT, true, "game-dict", "dictionary name for game" }
|
||||
,{ CMD_PLAYERDICT, true, "player-dict", "dictionary name for player (in sequence)" }
|
||||
|
@ -957,7 +956,7 @@ main( int argc, char** argv )
|
|||
mainParams.skipCommitConfirm = XP_TRUE;
|
||||
mainParams.showColors = XP_TRUE;
|
||||
mainParams.allowPeek = XP_TRUE;
|
||||
mainParams.showRobotScores = XP_TRUE;
|
||||
mainParams.showRobotScores = XP_FALSE;
|
||||
|
||||
/* serverName = mainParams.info.clientInfo.serverName = "localhost"; */
|
||||
|
||||
|
@ -981,7 +980,7 @@ main( int argc, char** argv )
|
|||
mainParams.skipGameOver = XP_TRUE;
|
||||
break;
|
||||
case CMD_SHOW_OTHERSCORES:
|
||||
mainParams.showRobotScores = XP_FALSE;
|
||||
mainParams.showRobotScores = XP_TRUE;
|
||||
break;
|
||||
#ifdef XWFEATURE_RELAY
|
||||
case CMD_ROOMNAME:
|
||||
|
|
Loading…
Add table
Reference in a new issue