From: H.G. Muller Date: Tue, 14 Jun 2011 16:20:37 +0000 (+0200) Subject: Change long form of -tf option to -tourneyFile X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=d28cb216c29eefc33a9ebce0a498bcf406b9775f;p=xboard.git 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. --- 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 },