mirror of
https://github.com/mpv-player/mpv
synced 2025-01-02 21:12:23 +00:00
options: fix off-by-1 error in option help output
This commit is contained in:
parent
8a75b19cd4
commit
5dde276018
@ -485,5 +485,5 @@ void mp_chmap_print_help(struct mp_log *log)
|
||||
std_layout_names[n][0], std_layout_names[n][1]);
|
||||
}
|
||||
for (int n = 0; n < MP_NUM_CHANNELS; n++)
|
||||
mp_info(log, " unknown%d\n", n);
|
||||
mp_info(log, " unknown%d\n", n + 1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user