mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Fix mistake in MRL commandline value parsing.
This commit is contained in:
parent
f0a412e202
commit
bbf0f02f3c
|
@ -1483,7 +1483,7 @@ int kvz_config_parse(kvz_config *cfg, const char *name, const char *value)
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
else if OPT("mrl") {
|
else if OPT("mrl") {
|
||||||
cfg->mrl = true;
|
cfg->mrl = atobool(value);
|
||||||
}
|
}
|
||||||
else if OPT("jccr") {
|
else if OPT("jccr") {
|
||||||
cfg->jccr = (bool)atobool(value);
|
cfg->jccr = (bool)atobool(value);
|
||||||
|
|
Loading…
Reference in a new issue