Why does the Github web editor commit tabs???

This commit is contained in:
Neo 2023-07-28 16:17:57 -07:00 committed by GitHub
parent a4cb524fed
commit 45004623be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -216,9 +216,9 @@ int CLI::validateCommandLine(Options* options, char *argv[], json *keys) {
int intBinkID;
sscanf(options->binkid.c_str(), "%x", &intBinkID);
if (intBinkID >= 0x40 && intBinkID < 0xFE ) { // FE and FF are BINK 1998
if (intBinkID >= 0x40 && intBinkID < 0xFE ) { // FE and FF are BINK 1998
// set bink2002 validate mode if in bink1998 validate mode, else set bink2002 generate mode
options->applicationMode = (options->applicationMode == MODE_BINK1998_VALIDATE) ? MODE_BINK2002_VALIDATE : MODE_BINK2002_GENERATE;
options->applicationMode = (options->applicationMode == MODE_BINK1998_VALIDATE) ? MODE_BINK2002_VALIDATE : MODE_BINK2002_GENERATE;
}
if (options->channelID > 999) {