mirror of
https://github.com/mpv-player/mpv
synced 2025-01-30 11:42:04 +00:00
m_option: fix duplicate flag value
This commit is contained in:
parent
1b19ba6c57
commit
e5b2af0a80
@ -410,8 +410,8 @@ char *format_file_size(int64_t size);
|
||||
|
||||
// The following are also part of the M_OPT_* flags, and are used to update
|
||||
// certain groups of options.
|
||||
#define UPDATE_OPT_FIRST (1 << 7)
|
||||
#define UPDATE_TERM (1 << 7) // terminal options
|
||||
#define UPDATE_OPT_FIRST (1 << 8)
|
||||
#define UPDATE_TERM (1 << 8) // terminal options
|
||||
#define UPDATE_OSD (1 << 10) // related to OSD rendering
|
||||
#define UPDATE_BUILTIN_SCRIPTS (1 << 11) // osc/ytdl/stats
|
||||
#define UPDATE_IMGPAR (1 << 12) // video image params overrides
|
||||
|
Loading…
Reference in New Issue
Block a user