Variant "half" is now detected as xtlv9

This commit is contained in:
BenDr0id 2019-01-14 08:48:21 +01:00
parent 4c995ea443
commit fbea78c653
2 changed files with 2 additions and 2 deletions

View file

@ -1176,7 +1176,7 @@ bool Options::parsePowVariant(const char *powVariant)
break;
}
if (i == ARRAY_SIZE(pow_variant_names) - 1 && (!strcmp(powVariant, "stellitev9") || !strcmp(powVariant, "xtlv2"))) {
if (i == ARRAY_SIZE(pow_variant_names) - 1 && (!strcmp(powVariant, "stellitev9") || !strcmp(powVariant, "xtlv2") || !strcmp(powVariant, "half"))) {
m_powVariant = POW_XTL_V9;
break;
}