0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

m_config: try to print min/max values as integers in --list-options

This switched to exponential representation too soon, and large integer
values looked bad in the --list-options output.
This commit is contained in:
wm4 2013-07-27 21:31:04 +02:00
parent a737308f73
commit 0293eac84a

View File

@ -665,9 +665,9 @@ void m_config_print_option_list(const struct m_config *config)
snprintf(min, sizeof(min), "any");
snprintf(max, sizeof(max), "any");
if (opt->flags & M_OPT_MIN)
snprintf(min, sizeof(min), "%g", opt->min);
snprintf(min, sizeof(min), "%.14g", opt->min);
if (opt->flags & M_OPT_MAX)
snprintf(max, sizeof(max), "%g", opt->max);
snprintf(max, sizeof(max), "%.14g", opt->max);
mp_msg(MSGT_CFGPARSER, MSGL_INFO, " (%s to %s)", min, max);
}
char *def = get_option_value_string(defaults, co->name);