Fix mistake in MRL commandline value parsing.

This commit is contained in:
siivonek 2021-08-31 10:20:41 +02:00
parent f0a412e202
commit bbf0f02f3c

View file

@ -1483,7 +1483,7 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
return success;
}
else if OPT("mrl") {
cfg->mrl = true;
cfg->mrl = atobool(value);
}
else if OPT("jccr") {
cfg->jccr = (bool)atobool(value);