mirror of
https://github.com/xtexChooser/WindowsXPKg.git
synced 2024-11-04 23:23:59 +00:00
cleaner cli.cpp fix
This commit is contained in:
parent
c1e9a0f021
commit
03ae90163a
1 changed files with 2 additions and 5 deletions
|
@ -216,11 +216,8 @@ int CLI::validateCommandLine(Options* options, char *argv[], json *keys) {
|
|||
int intBinkID;
|
||||
sscanf(options->binkid.c_str(), "%x", &intBinkID);
|
||||
|
||||
if (intBinkID >= 0x40) {
|
||||
if (intBinkID != 0xFE && intBinkID != 0xFF) { // FE and FF are oddballs that are bink1998, this excludes them from being set to bink2002
|
||||
// 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;
|
||||
}
|
||||
if (intBinkID >= 0x40 && intBinkID < 0xFE ) { // FE and FF are BINK 1998
|
||||
options->applicationMode = (options->applicationMode == MODE_BINK1998_VALIDATE) ? MODE_BINK2002_VALIDATE : MODE_BINK2002_GENERATE;
|
||||
}
|
||||
|
||||
if (options->channelID > 999) {
|
||||
|
|
Loading…
Reference in a new issue