From d28cb216c29eefc33a9ebce0a498bcf406b9775f Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Tue, 14 Jun 2011 18:20:37 +0200 Subject: [PATCH] Change long form of -tf option to -tourneyFile This is a more logical name, and in the WinBoard docs it was already described as such. Also remove the -processes option, which in the current design of the tourney manager is no longer used. --- args.h | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/args.h b/args.h index 0f95654..d3909b5 100644 --- a/args.h +++ b/args.h @@ -564,9 +564,8 @@ ArgDescriptor argDescriptors[] = { { "userFileDirectory", ArgFilename, (void *) &homeDir, FALSE, (ArgIniType) installDir }, // [HGM] tournament options - { "tourney", ArgFilename, (void *) &appData.tourneyFile, FALSE, (ArgIniType) "" }, + { "tourneyFile", ArgFilename, (void *) &appData.tourneyFile, FALSE, (ArgIniType) "" }, { "tf", ArgFilename, (void *) &appData.tourneyFile, FALSE, INVALID }, - { "processes", ArgString, (void *) &appData.processes, FALSE, (ArgIniType) " " }, { "participants", ArgString, (void *) &appData.participants, FALSE, (ArgIniType) "" }, { "tourneyType", ArgInt, (void *) &appData.tourneyType, FALSE, (ArgIniType) 0 }, { "tt", ArgInt, (void *) &appData.tourneyType, FALSE, INVALID }, -- 1.7.0.4